mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 14:19:59 -05:00
cmLocalGenerator: Fix AddBuildTargetRule object file path conversion
The object file list is constructed for a shell, not a Makefile rule.
This commit is contained in:
@@ -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 += " ";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user