From e7ee892b391992e0e8198917b8ef5cce76da2fd1 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 22 Jul 2014 12:38:08 -0400 Subject: cmLocalGenerator: Fix AddBuildTargetRule object file path conversion The object file list is constructed for a shell, not a Makefile rule. --- Source/cmLocalGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index d2652f7..4bd9191 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -681,7 +681,7 @@ void cmLocalGenerator::AddBuildTargetRule(const std::string& llang, objVector.push_back(ofname); this->AddCustomCommandToCreateObject(ofname.c_str(), llang, *(*i), target); - objs += this->Convert(ofname,START_OUTPUT,MAKERULE); + objs += this->Convert(ofname,START_OUTPUT,SHELL); objs += " "; } } -- cgit v0.12