summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-03 19:17:55 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-03 19:17:55 (GMT)
commit00d063a3469146a3b94ec2456ceaf038393c51aa (patch)
tree64a502216c841bd2037b6e384039ec146b3872ef /Source
parentf131463e3d7d9281665cce69856ce1ef90327f9f (diff)
downloadCMake-00d063a3469146a3b94ec2456ceaf038393c51aa.zip
CMake-00d063a3469146a3b94ec2456ceaf038393c51aa.tar.gz
CMake-00d063a3469146a3b94ec2456ceaf038393c51aa.tar.bz2
BUG: use SHELL var
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx2
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 += "\"";