diff options
author | Brad King <brad.king@kitware.com> | 2006-03-03 17:58:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-03-03 17:58:48 (GMT) |
commit | 93c95f1cc5207d043b4bfaa617a611d1dffc7016 (patch) | |
tree | 2fffa0b6b63b2cdf104d6425e213b076c7a84450 /Source/cmTarget.cxx | |
parent | ea8c278cd63010f00d12ded3cdde316c5188cd01 (diff) | |
download | CMake-93c95f1cc5207d043b4bfaa617a611d1dffc7016.zip CMake-93c95f1cc5207d043b4bfaa617a611d1dffc7016.tar.gz CMake-93c95f1cc5207d043b4bfaa617a611d1dffc7016.tar.bz2 |
BUG: Fixed installation of MacOSX Bundle executables and the corresponding install_name remapping support. Extended the BundleTest test to check that this all works. Part of these fixes required changing the signature of AppendDirectoryForConfig in all generators. It now accepts prefix and suffix strings to deal with whether leading or trailing slashes should be included with the configuration subdirectory.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index a02e34e..3fd75a5 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -831,9 +831,8 @@ const char* cmTarget::GetDirectory(const char* config) if(config) { // Add the configuration's subdirectory. - m_Directory += "/"; m_Makefile->GetLocalGenerator()->GetGlobalGenerator()-> - AppendDirectoryForConfig(config, m_Directory); + AppendDirectoryForConfig("/", config, "", m_Directory); } return m_Directory.c_str(); } |