diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-15 14:00:44 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-15 14:00:44 (GMT) |
commit | 4b34ffa669466584f44aa76d3756b5b22b285674 (patch) | |
tree | 6bc0b128aca4f4c305a366039ad1dab63be2ec21 /Source/cmUnixMakefileGenerator.cxx | |
parent | ba62b9d94d702d2343791462650d2d49e2678d42 (diff) | |
download | CMake-4b34ffa669466584f44aa76d3756b5b22b285674.zip CMake-4b34ffa669466584f44aa76d3756b5b22b285674.tar.gz CMake-4b34ffa669466584f44aa76d3756b5b22b285674.tar.bz2 |
BUG: wrong shortname used
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 75319b3..723b964 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -1537,7 +1537,7 @@ void cmUnixMakefileGenerator::OutputSourceObjectBuildRules(std::ostream& fout) *source, exportsDef.c_str(), shared); - rules.insert(shortName); + rules.insert(shortNameWithExt); } } } |