summaryrefslogtreecommitdiff
path: root/Source/cmTest.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-04-25 08:34:30 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2006-04-25 08:34:30 -0400
commitbb08b88cc4be791172801d0e6ffdae2a3691f413 (patch)
treef04707d592d2b71ecafe9c7641d8761194ee5cbc /Source/cmTest.cxx
parent456f01e35b3179c4cf65145dae212688eada729d (diff)
downloadcmake-bb08b88cc4be791172801d0e6ffdae2a3691f413.tar.gz
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.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx
index affff8a1c8..ee7d95237b 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)