summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-09-24 13:21:46 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-09-24 13:21:46 (GMT)
commite6a7abd2b69b45933abb5617a8bf5b800b2dde6f (patch)
tree905cb91c8bbbe387ad15033a37315f4de1aa22bc /Source
parentbe5215c4ba85942a22143894048a4f160b65a87a (diff)
parent92b2c6189ddbe1293989d469c214f6f306b2ed6e (diff)
downloadCMake-e6a7abd2b69b45933abb5617a8bf5b800b2dde6f.zip
CMake-e6a7abd2b69b45933abb5617a8bf5b800b2dde6f.tar.gz
CMake-e6a7abd2b69b45933abb5617a8bf5b800b2dde6f.tar.bz2
Merge topic 'fix-LOCATION-slashes'
92b2c618 Remove extra slashes from LOCATION target property value
Diffstat (limited to 'Source')
-rw-r--r--Source/cmTarget.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index acae0b3..f4714a9 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -2769,16 +2769,11 @@ const char* cmTarget::GetLocationForBuild() const
// Now handle the deprecated build-time configuration location.
location = this->GetDirectory();
- if(!location.empty())
- {
- location += "/";
- }
const char* cfgid = this->Makefile->GetDefinition("CMAKE_CFG_INTDIR");
if(cfgid && strcmp(cfgid, ".") != 0)
{
location += "/";
location += cfgid;
- location += "/";
}
if(this->IsAppBundleOnApple())