From e6f9ea3d13d3500de8723702a558933254bbdbfe Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Mon, 20 Jun 2005 16:24:37 -0400 Subject: [PATCH] BUG: goof in new feature fixed --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index abb29ea741..fdc5aa223e 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;