diff options
author | Denys Nykula <nykula@ukr.net> | 2019-09-23 05:15:02 +0300 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-09-23 13:39:01 -0500 |
commit | 9aaa950d3a0d5518709f84c80b06fd761f992fe8 (patch) | |
tree | 357b2975c949508d9263a842779695d29e4eda6a /toys | |
parent | cd8876936da8a0a48c72b1b4032eb08105b9b3e2 (diff) | |
download | toybox-9aaa950d3a0d5518709f84c80b06fd761f992fe8.tar.gz |
noop gzip -n.
Add mock gzip -n to satisfy pkgsrc.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/lsb/gzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/lsb/gzip.c b/toys/lsb/gzip.c index 0fa9b7e1..3038495e 100644 --- a/toys/lsb/gzip.c +++ b/toys/lsb/gzip.c @@ -8,7 +8,7 @@ * todo: qtv --rsyncable // gzip.net version allows all options for all commands. -USE_GZIP(NEWTOY(gzip, "cdfk123456789[-123456789]", TOYFLAG_USR|TOYFLAG_BIN)) +USE_GZIP(NEWTOY(gzip, "ncdfk123456789[-123456789]", TOYFLAG_USR|TOYFLAG_BIN)) USE_GUNZIP(NEWTOY(gunzip, "cdfk123456789[-123456789]", TOYFLAG_USR|TOYFLAG_BIN)) USE_ZCAT(NEWTOY(zcat, "cdfk123456789[-123456789]", TOYFLAG_USR|TOYFLAG_BIN)) |