Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
6abbc7b1
Commit
6abbc7b1
authored
Oct 18, 2004
by
Bill Hoffman
Browse files
BUG: make sure output path is used for target with canonical name
parent
6b7257db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmLocalUnixMakefileGenerator.cxx
View file @
6abbc7b1
...
...
@@ -1295,7 +1295,11 @@ void cmLocalUnixMakefileGenerator::OutputLibraryRule(std::ostream& fout,
commands
);
}
// Add a target with the canonical name (no prefix, suffix or path).
this
->
OutputMakeRule
(
fout
,
comment
,
name
,
tgt
.
c_str
(),
0
);
this
->
OutputMakeRule
(
fout
,
comment
,
name
,
this
->
ConvertToRelativeOutputPath
(
tgt
.
c_str
()).
c_str
(),
0
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment