summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2004-10-28 11:43:18 (GMT)
committerBrad King <brad.king@kitware.com>2004-10-28 11:43:18 (GMT)
commit8711ce31d9917d8c5cae04453ffbb883f586def2 (patch)
tree892a08c3cd724c79186bb142e25044e42d38838f
parentbce0865c70cb04fb026dd73c3af95ea9c5c8f6a0 (diff)
downloadCMake-8711ce31d9917d8c5cae04453ffbb883f586def2.zip
CMake-8711ce31d9917d8c5cae04453ffbb883f586def2.tar.gz
CMake-8711ce31d9917d8c5cae04453ffbb883f586def2.tar.bz2
COMP: Fix for Mac specific code.
-rw-r--r--Source/cmLocalUnixMakefileGenerator2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.cxx b/Source/cmLocalUnixMakefileGenerator2.cxx
index 4da5c4a..b0fdf1f 100644
--- a/Source/cmLocalUnixMakefileGenerator2.cxx
+++ b/Source/cmLocalUnixMakefileGenerator2.cxx
@@ -646,7 +646,7 @@ cmLocalUnixMakefileGenerator2
if(target.GetPropertyAsBool("MACOSX_BUNDLE"))
{
// Make bundle directories
- targetFullPath += name;
+ targetFullPath += target.GetName();
targetFullPath += ".app/Contents/MacOS/";
}
#endif