mirror of
https://github.com/reactos/CMake.git
synced 2025-02-15 09:07:37 +00:00
Put quotes around arguments if they have spaces and no quotes
This commit is contained in:
parent
4918ce6593
commit
ffe1132407
@ -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());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user