mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +00:00
Test and tweak mingw ... the process name should not have spaces escaped,
only the arguments list. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20716 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
daff3d6b76
commit
e9765ac706
1 changed files with 1 additions and 1 deletions
|
@ -4569,7 +4569,7 @@ printf(
|
||||||
}
|
}
|
||||||
a[argc] = "-f";
|
a[argc] = "-f";
|
||||||
a[argc+1] = 0;
|
a[argc+1] = 0;
|
||||||
if (_spawnv(_P_NOWAIT, a[0], a) == -1)
|
if (_spawnv(_P_NOWAIT, argv[0], a) == -1)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "gdomap - spawn '%s' failed - bye.\n", argv[0]);
|
fprintf(stderr, "gdomap - spawn '%s' failed - bye.\n", argv[0]);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue