diff options
author | Brad King <brad.king@kitware.com> | 2004-10-28 11:43:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-10-28 11:43:18 (GMT) |
commit | 8711ce31d9917d8c5cae04453ffbb883f586def2 (patch) | |
tree | 892a08c3cd724c79186bb142e25044e42d38838f | |
parent | bce0865c70cb04fb026dd73c3af95ea9c5c8f6a0 (diff) | |
download | CMake-8711ce31d9917d8c5cae04453ffbb883f586def2.zip CMake-8711ce31d9917d8c5cae04453ffbb883f586def2.tar.gz CMake-8711ce31d9917d8c5cae04453ffbb883f586def2.tar.bz2 |
COMP: Fix for Mac specific code.
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator2.cxx | 2 |
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 |