summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileTargetGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-08-27 11:44:52 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-08-27 11:44:52 (GMT)
commit6960516b6b053816313d2ff5ee4e9375a84829cb (patch)
tree442b0c0d99ffe4c44b1cc5eab1173b0066193159 /Source/cmMakefileTargetGenerator.cxx
parente0fd2d0446101847dd40cfe4cc451667d04ddcd9 (diff)
downloadCMake-6960516b6b053816313d2ff5ee4e9375a84829cb.zip
CMake-6960516b6b053816313d2ff5ee4e9375a84829cb.tar.gz
CMake-6960516b6b053816313d2ff5ee4e9375a84829cb.tar.bz2
Makefiles: Change signature of AppendCustomCommand
The RelativeRoot parameter will become non-default.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileTargetGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx
index 8f14e8c..0c637a9 100644
--- a/Source/cmMakefileTargetGenerator.cxx
+++ b/Source/cmMakefileTargetGenerator.cxx
@@ -1094,8 +1094,8 @@ void cmMakefileTargetGenerator::GenerateCustomRuleFile(
// Now append the actual user-specified commands.
std::ostringstream content;
this->LocalGenerator->AppendCustomCommand(
- commands, ccg, this->GeneratorTarget, false,
- cmOutputConverter::HOME_OUTPUT, &content);
+ commands, ccg, this->GeneratorTarget, cmOutputConverter::HOME_OUTPUT,
+ false, &content);
// Collect the dependencies.
std::vector<std::string> depends;