* fixed one change too many from {ifdef macos} into {ifdef usedos}

git-svn-id: trunk@12363 -
This commit is contained in:
Jonas Maebe 2008-12-14 18:01:16 +00:00
parent 3a56f2403c
commit f104ec1346

View File

@ -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;