summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-01-16 16:01:23 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2017-01-16 16:01:23 (GMT)
commit9aa2ec7787968528a6612aeedcf0485700ef8445 (patch)
treed6fb324a64ab6972716ce4d42cddbf50ce744da7
parent4433be6bce6f69d26dee1e2a4213e409bde66a21 (diff)
parent1b63ce865e86596ad7df3cf39df827434c986f22 (diff)
downloadCMake-9aa2ec7787968528a6612aeedcf0485700ef8445.zip
CMake-9aa2ec7787968528a6612aeedcf0485700ef8445.tar.gz
CMake-9aa2ec7787968528a6612aeedcf0485700ef8445.tar.bz2
Merge topic 'fast-local-and-strip-install'
1b63ce86 Makefiles: Make fast local and strip install truly fast
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index ba17f81..41a4caf 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1592,8 +1592,8 @@ void cmLocalUnixMakefileGenerator3::WriteLocalAllRules(
// Provide a "/fast" version of the target.
depends.clear();
- if ((targetName == "install") || (targetName == "install_local") ||
- (targetName == "install_strip")) {
+ if ((targetName == "install") || (targetName == "install/local") ||
+ (targetName == "install/strip")) {
// Provide a fast install target that does not depend on all
// but has the same command.
depends.push_back("preinstall/fast");