diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-03 19:17:55 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-03 19:17:55 (GMT) |
commit | 00d063a3469146a3b94ec2456ceaf038393c51aa (patch) | |
tree | 64a502216c841bd2037b6e384039ec146b3872ef /Source | |
parent | f131463e3d7d9281665cce69856ce1ef90327f9f (diff) | |
download | CMake-00d063a3469146a3b94ec2456ceaf038393c51aa.zip CMake-00d063a3469146a3b94ec2456ceaf038393c51aa.tar.gz CMake-00d063a3469146a3b94ec2456ceaf038393c51aa.tar.bz2 |
BUG: use SHELL var
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index 0df7ce1..09fb782 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -550,7 +550,7 @@ std::string cmGlobalUnixMakefileGenerator3::GenerateBuildCommand(const char* mak std::string tname = targetName; tname += "/fast"; tname = lg->Convert(tname.c_str(),cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::SHELL); + cmLocalGenerator::MAKEFILE); tname = lg->ConvertToMakeTarget(tname.c_str()); makeCommand += tname.c_str(); makeCommand += "\""; |