summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio6Generator.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-10-01 17:04:19 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-10-01 17:04:19 (GMT)
commit789cc7185561436771627411bb8870f695ab6ec0 (patch)
tree6beae24eed72a180dc97f74a12fbfd633ea1f26a /Source/cmLocalVisualStudio6Generator.cxx
parentffe1132407c021fcbb55a3f8ed1f29062068238b (diff)
downloadCMake-789cc7185561436771627411bb8870f695ab6ec0.zip
CMake-789cc7185561436771627411bb8870f695ab6ec0.tar.gz
CMake-789cc7185561436771627411bb8870f695ab6ec0.tar.bz2
Fix a bug in generator. This one is good: This bug is only present on Windows 98, but since RunCommand did not work, it never showed on the dashboard... In any case commands in Visual studio 6 should be in windows style slashes
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio6Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx
index d227dcd..7fa5df2 100644
--- a/Source/cmLocalVisualStudio6Generator.cxx
+++ b/Source/cmLocalVisualStudio6Generator.cxx
@@ -555,7 +555,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(const cmTarget &target,
{
customRuleCode += "\t";
}
- customRuleCode += cc.GetCommand() + " " + cc.GetArguments();
+ customRuleCode += cmSystemTools::ConvertToOutputPath(cc.GetCommand().c_str()) + " " + cc.GetArguments();
}
}