From 106d81abd8dacfc7fdbc2c94cbaafb0d18950649 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 21 Apr 2019 19:47:16 -0500 Subject: [PATCH] Promote gzip/zcat but keep gunzip default n until lib/deflate.c finished. --- toys/{pending => lsb}/gzip.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename toys/{pending => lsb}/gzip.c (97%) diff --git a/toys/pending/gzip.c b/toys/lsb/gzip.c similarity index 97% rename from toys/pending/gzip.c rename to 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...] -- 2.39.2