summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileLibraryTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-03-09 13:45:51 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-03-09 13:45:51 (GMT)
commit387466dd9508ae57a864cdd8f2c8d8d28140b74c (patch)
tree31b689ec4ecfa9a1a6d348da62d3b31f151a8d35 /Source/cmMakefileLibraryTargetGenerator.cxx
parentbdb00b36133c64a36fbba7fd6c648725062b6732 (diff)
parent66a9c90c4bb5bf93bd570a423f99486b24b9337d (diff)
downloadCMake-387466dd9508ae57a864cdd8f2c8d8d28140b74c.zip
CMake-387466dd9508ae57a864cdd8f2c8d8d28140b74c.tar.gz
CMake-387466dd9508ae57a864cdd8f2c8d8d28140b74c.tar.bz2
Merge topic 'custom-command-multiple-outputs'
66a9c90c Makefile: Fix multiple custom command outputs regression (#15116)
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileLibraryTargetGenerator.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx
index 84761cc..fcb76c3 100644
--- a/Source/cmMakefileLibraryTargetGenerator.cxx
+++ b/Source/cmMakefileLibraryTargetGenerator.cxx
@@ -769,9 +769,8 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules
}
// Write the build rule.
- this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, 0,
- outputs, depends, commands, false);
-
+ this->WriteMakeRule(*this->BuildFileStream, 0, outputs,
+ depends, commands, false);
// Write the main driver rule to build everything in this target.
this->WriteTargetDriverRule(targetFullPath, relink);