diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-25 12:34:30 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-25 12:34:30 (GMT) |
commit | bb08b88cc4be791172801d0e6ffdae2a3691f413 (patch) | |
tree | f04707d592d2b71ecafe9c7641d8761194ee5cbc /Source/cmTest.cxx | |
parent | 456f01e35b3179c4cf65145dae212688eada729d (diff) | |
download | CMake-bb08b88cc4be791172801d0e6ffdae2a3691f413.zip CMake-bb08b88cc4be791172801d0e6ffdae2a3691f413.tar.gz CMake-bb08b88cc4be791172801d0e6ffdae2a3691f413.tar.bz2 |
ENH: make sure command is unix style as it may have been sent into cmake as a windows path
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r-- | Source/cmTest.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx index affff8a..ee7d952 100644 --- a/Source/cmTest.cxx +++ b/Source/cmTest.cxx @@ -42,6 +42,7 @@ void cmTest::SetCommand(const char* command) command = ""; } this->Command = command; + cmSystemTools::ConvertToUnixSlashes(this->Command); } void cmTest::SetArguments(const std::vector<cmStdString>& args) |