summaryrefslogtreecommitdiffstats
path: root/Source/cmw9xcom.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmw9xcom.cxx')
-rw-r--r--Source/cmw9xcom.cxx18
1 files changed, 15 insertions, 3 deletions
diff --git a/Source/cmw9xcom.cxx b/Source/cmw9xcom.cxx
index bf32430..0f2b403 100644
--- a/Source/cmw9xcom.cxx
+++ b/Source/cmw9xcom.cxx
@@ -25,13 +25,25 @@ int main (int argc, char *argv[])
std::cerr << "Usage: " << argv[0] << " executable" << std::endl;
return 1;
}
- std::string command = argv[1];
+ std::string arg = argv[1];
+ if ( (arg.find_first_of(" ") != arg.npos) &&
+ (arg.find_first_of("\"") == arg.npos) )
+ {
+ arg = "\"" + arg + "\"";
+ }
+ std::string command = arg;
int cc;
for ( cc = 2; cc < argc; cc ++ )
{
+ std::string arg = argv[cc];
+ if ( (arg.find_first_of(" ") != arg.npos) &&
+ (arg.find_first_of("\"") == arg.npos) )
+ {
+ arg = "\"" + arg + "\"";
+ }
command += " ";
- command += argv[cc];
+ command += arg;
}
-
+
return cmWin32ProcessExecution::Windows9xHack(command.c_str());
}