summaryrefslogtreecommitdiffstats
path: root/Source/cmDSPMakefile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmDSPMakefile.cxx')
-rw-r--r--Source/cmDSPMakefile.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmDSPMakefile.cxx b/Source/cmDSPMakefile.cxx
index 31efded..f55474b 100644
--- a/Source/cmDSPMakefile.cxx
+++ b/Source/cmDSPMakefile.cxx
@@ -303,7 +303,6 @@ void cmDSPMakefile::WriteCustomRule(std::ostream& fout,
fout << "!ELSEIF \"$(CFG)\" == " << i->c_str() << std::endl;
}
fout << "# Begin Custom Build\n\n";
- fout << "BuildCommand = " << command << "\n\n";
// Write a rule for every output generated by this command.
for(std::set<std::string>::const_iterator output = outputs.begin();
@@ -317,7 +316,7 @@ void cmDSPMakefile::WriteCustomRule(std::ostream& fout,
{
fout << " \"" << d->c_str() << "\"";
}
- fout << "\n $(BuildCommand)\n\n";
+ fout << "\n " << command << "\n\n";
}
fout << "# End Custom Build\n\n";