http://bugs.winehq.org/show_bug.cgi?id=22338
Paolo Bonzini bonzini@gnu.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|spawnl(P_WAIT, "...") and |spawnl(P_WAIT, "...") and |system() do not wait if a |system() do not wait if a |host program is invoked |Unix program is invoked
--- Comment #3 from Paolo Bonzini bonzini@gnu.org 2010-04-11 13:42:32 --- How can I verify this bug on real Windows if it requires me to launch a Unix executable? :-)
The point is that system() and spawnl(P_WAIT, "...") should work independent of what executable I give, for example this waits:
system ("c:\msys\1.0\bin\cat.exe z:\etc\passwd");
and this doesn't:
system ("z:\bin\cat.exe z:\etc\passwd");
BTW I think the affected component is actually wineserver but I'm not sure.