From 8eda3791e75c48255cc9558b82fa8069750066bd Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 4 Jun 2003 10:13:01 -0400 Subject: bug fix --- Source/cmLocalVisualStudio6Generator.cxx | 4 ++-- 1 file 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"; } -- cgit v0.12