From 5a06efda05feda02511592c76134ee8ed3e8b650 Mon Sep 17 00:00:00 2001 From: Daniel Eiband Date: Sat, 21 Sep 2019 01:17:15 +0200 Subject: cmMakefile: Remove AddUtilityCommand overload without byproducts --- Source/cmCPluginAPI.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Source/cmCPluginAPI.cxx') diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index 29d2495de7..78a232e586 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -220,8 +220,10 @@ void CCONV cmAddUtilityCommand(void* arg, const char* utilityName, } // Pass the call to the makefile instance. + std::vector no_byproducts; mf->AddUtilityCommand(utilityName, cmCommandOrigin::Project, - (all ? false : true), nullptr, depends2, commandLines); + (all ? false : true), nullptr, no_byproducts, depends2, + commandLines); } void CCONV cmAddCustomCommand(void* arg, const char* source, const char* command, int numArgs, -- cgit v1.2.1