diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-20 20:24:37 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-20 20:24:37 (GMT) |
commit | e6f9ea3d13d3500de8723702a558933254bbdbfe (patch) | |
tree | 6be8609e85e71974e4c6959fd321ff0ae606ef3e /Source/cmMakefile.cxx | |
parent | 2735dbe8352c3995faab10768193c8e1109a1c79 (diff) | |
download | CMake-e6f9ea3d13d3500de8723702a558933254bbdbfe.zip CMake-e6f9ea3d13d3500de8723702a558933254bbdbfe.tar.gz CMake-e6f9ea3d13d3500de8723702a558933254bbdbfe.tar.bz2 |
BUG: goof in new feature fixed
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index abb29ea..fdc5aa2 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1108,7 +1108,7 @@ void cmMakefile::AddLibrary(const char* lname, int shared, target_location += "/"; } target_location += target.GetFullName(this); - target.SetProperty("LOCATION",target_location.c_str()); + it->second.SetProperty("LOCATION",target_location.c_str()); // Add an entry into the cache std::string ltname = lname; |