diff options
author | Rob Landley <rob@landley.net> | 2019-04-21 19:47:16 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-04-21 19:47:16 -0500 |
commit | 106d81abd8dacfc7fdbc2c94cbaafb0d18950649 (patch) | |
tree | 8f09f6da325abefdf98184421c3de49ef4754842 /toys | |
parent | 7964e1f78b58d9c365361cc36b0422d9d56cd204 (diff) | |
download | toybox-106d81abd8dacfc7fdbc2c94cbaafb0d18950649.tar.gz |
Promote gzip/zcat but keep gunzip default n until lib/deflate.c finished.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/lsb/gzip.c (renamed from toys/pending/gzip.c) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toys/pending/gzip.c b/toys/lsb/gzip.c index 56d1e46a..7bd8d381 100644 --- a/toys/pending/gzip.c +++ b/toys/lsb/gzip.c @@ -2,6 +2,7 @@ * * Copyright 2017 The Android Open Source Project * + * See http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/gzip.html * GZIP RFC: http://www.ietf.org/rfc/rfc1952.txt * * todo: qtv --rsyncable @@ -13,7 +14,7 @@ USE_ZCAT(NEWTOY(zcat, "cdfk123456789[-123456789]", TOYFLAG_USR|TOYFLAG_BIN)) config GZIP bool "gzip" - default n + default y help usage: gzip [-19cdfk] [FILE...] @@ -43,7 +44,7 @@ config GUNZIP config ZCAT bool "zcat" - default n + default y help usage: zcat [FILE...] |