diff options
author | Brad King <brad.king@kitware.com> | 2017-01-16 16:01:23 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2017-01-16 16:01:23 (GMT) |
commit | 9aa2ec7787968528a6612aeedcf0485700ef8445 (patch) | |
tree | d6fb324a64ab6972716ce4d42cddbf50ce744da7 | |
parent | 4433be6bce6f69d26dee1e2a4213e409bde66a21 (diff) | |
parent | 1b63ce865e86596ad7df3cf39df827434c986f22 (diff) | |
download | CMake-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.cxx | 4 |
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"); |