Ok, now cd will work on windows

This commit is contained in:
Andy Cedilnik 2002-07-25 16:41:36 -04:00
parent 8dd1602574
commit 23deae1040
1 changed files with 1 additions and 1 deletions

View File

@ -1260,7 +1260,7 @@ bool RunCommandViaSystem(const char* command,
if(dir)
{
commandInDir = "cd ";
commandInDir += dir;
commandInDir += cmSystemTools::ConvertToOutputPath(dir);
commandInDir += " && ";
commandInDir += command;
}