diff options
Diffstat (limited to 'systemunit.pas')
-rw-r--r-- | systemunit.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systemunit.pas b/systemunit.pas index a716d43..6b858b2 100644 --- a/systemunit.pas +++ b/systemunit.pas @@ -143,8 +143,8 @@ begin args[length(args)-1]:=erstesArgument(s); end; result:=''; - if not runCommand('/usr/bin/mktemp',args,result) then - raise exception.create('Fehler beim Ausführen von ''/usr/bin/mktemp '+s+'''!'); + if not runCommand('mktemp',args,result) then + raise exception.create('Fehler beim Ausführen von ''mktemp '+s+'''!'); result:=trim(result); end; |