diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-06-04 14:13:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-06-04 14:13:01 (GMT) |
commit | 8eda3791e75c48255cc9558b82fa8069750066bd (patch) | |
tree | 65cb62274db48a343efdadfde56de0fd5915fa5c /Source | |
parent | 48cd349c810d5bbe8baf49463e5361c19cc62df5 (diff) | |
download | CMake-8eda3791e75c48255cc9558b82fa8069750066bd.zip CMake-8eda3791e75c48255cc9558b82fa8069750066bd.tar.gz CMake-8eda3791e75c48255cc9558b82fa8069750066bd.tar.bz2 |
bug fix
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index 534317a..499a90e 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -473,13 +473,13 @@ void cmLocalVisualStudio6Generator::WriteCustomRule(std::ostream& fout, << " $(InputPath)\n\n"; if(output == 0) { - fout << source << "_force : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\""; + fout << source << "_force : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"\n\t"; fout << command << "\n\n"; } // Write a rule for every output generated by this command. fout << cmSystemTools::ConvertToOutputPath(output) - << " : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\""; + << " : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"\n\t"; fout << command << "\n\n"; fout << "# End Custom Build\n\n"; } |