diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-10-01 17:04:19 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-10-01 17:04:19 (GMT) |
commit | 789cc7185561436771627411bb8870f695ab6ec0 (patch) | |
tree | 6beae24eed72a180dc97f74a12fbfd633ea1f26a /Source/cmLocalVisualStudio6Generator.cxx | |
parent | ffe1132407c021fcbb55a3f8ed1f29062068238b (diff) | |
download | CMake-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.cxx | 2 |
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(); } } |