mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-04 08:47:29 +01:00
* fixed one change too many from {ifdef macos} into {ifdef usedos}
git-svn-id: trunk@12363 -
This commit is contained in:
parent
3a56f2403c
commit
f104ec1346
@ -1051,7 +1051,11 @@ end;
|
||||
{$ifndef usedos}
|
||||
Sysutils.ExecuteProcess(ProgName,Comline)
|
||||
{$else}
|
||||
{$ifdef macos}
|
||||
Dos.Exec(''''+ProgName+'''',Comline) {Quotes needed !}
|
||||
{$else}
|
||||
Dos.Exec(ProgName,Comline)
|
||||
{$endif}
|
||||
{$endif}
|
||||
else
|
||||
DosError:=2;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user