diff options
author | Brad King <brad.king@kitware.com> | 2014-09-24 13:21:46 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-09-24 13:21:46 (GMT) |
commit | e6a7abd2b69b45933abb5617a8bf5b800b2dde6f (patch) | |
tree | 905cb91c8bbbe387ad15033a37315f4de1aa22bc /Source | |
parent | be5215c4ba85942a22143894048a4f160b65a87a (diff) | |
parent | 92b2c6189ddbe1293989d469c214f6f306b2ed6e (diff) | |
download | CMake-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.cxx | 5 |
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()) |