diff options
author | Erich Eckner <git@eckner.net> | 2015-11-17 17:36:44 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2015-11-17 17:36:44 +0100 |
commit | fca8ef8425256261d678b51e780c03c27a2136c6 (patch) | |
tree | ede085d5756a62b52195622424388fee65fb2e77 /mystringlistunit.pas | |
parent | 6e6e957909e2729b01d827f44a095bc2936a36ad (diff) | |
download | units-fca8ef8425256261d678b51e780c03c27a2136c6.tar.xz |
keine absoluten Pfade in mystringlistunit.pas zu zcat und gzip
Diffstat (limited to 'mystringlistunit.pas')
-rw-r--r-- | mystringlistunit.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mystringlistunit.pas b/mystringlistunit.pas index f67d117..e6fc565 100644 --- a/mystringlistunit.pas +++ b/mystringlistunit.pas @@ -115,7 +115,7 @@ var p: tProcess; rb,br: longint; begin p:=tProcess.create(nil); - p.executable:='/usr/bin/zcat'; + p.executable:='zcat'; p.parameters.add(s); p.options:=p.options + [poUsePipes]; setlength(buf,0); @@ -167,7 +167,7 @@ begin else datNam:=s; p:=tProcess.create(nil); - p.executable:='/usr/bin/gzip'; + p.executable:='gzip'; p.parameters.add('--best'); p.parameters.add('-c'); p.options:=p.options + [poUsePipes]; |