Browse Source

Fix grouping of arguments on Windows 98

Ken Martin 23 years ago
parent
commit
4045066f01
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/cmWin32ProcessExecution.cxx

+ 2 - 2
Source/cmWin32ProcessExecution.cxx

@@ -164,14 +164,14 @@ static BOOL RealPopenCreateProcess(const char *cmdstring,
       ZeroMemory(s2, x);
       sprintf(
 	s2,
-	"%s \"%s%s%s\"",
+	"%s %s%s%s",
 	modulepath,
 	s1,
 	s3,
 	cmdstring);
       sprintf(
 	s2,
-	"%s \"%s\"",
+	"%s %s",
 	modulepath,
 	cmdstring);
       }