diff options
author | Brad King <brad.king@kitware.com> | 2006-02-20 00:28:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-20 00:28:53 (GMT) |
commit | c21287552bd262a60c38e495b75c91888882e681 (patch) | |
tree | 62bb4118b8072fcbf4a0707d6d461f207e0134cc /Source/cmGlobalXCodeGenerator.cxx | |
parent | 518080136d2b643b2b27ae1ef69cee28306c2f81 (diff) | |
download | CMake-c21287552bd262a60c38e495b75c91888882e681.zip CMake-c21287552bd262a60c38e495b75c91888882e681.tar.gz CMake-c21287552bd262a60c38e495b75c91888882e681.tar.bz2 |
ENH: Switched order of slash and configuration name in cmGlobalGenerator::AppendDirectoryForConfig method to increase flexibility.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 7ab9720..95be32a 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -2309,8 +2309,8 @@ cmGlobalXCodeGenerator { if(config) { - dir += "/"; dir += config; + dir += "/"; } } } |