diff options
author | Brad King <brad.king@kitware.com> | 2014-07-22 16:38:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-22 16:38:08 (GMT) |
commit | e7ee892b391992e0e8198917b8ef5cce76da2fd1 (patch) | |
tree | ae2fe64eb652d914c2c5cc58b72d8a6dde794be8 | |
parent | 9f92a78be21a7f126f1776d481cc4bd2acdf4a1b (diff) | |
download | CMake-e7ee892b391992e0e8198917b8ef5cce76da2fd1.zip CMake-e7ee892b391992e0e8198917b8ef5cce76da2fd1.tar.gz CMake-e7ee892b391992e0e8198917b8ef5cce76da2fd1.tar.bz2 |
cmLocalGenerator: Fix AddBuildTargetRule object file path conversion
The object file list is constructed for a shell, not a Makefile rule.
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 += " "; } } |