Support old-style compress (.Z) files via libbb / unzip( ) calls

(configurable) - When enabled an applet "uncompress" is also made
available (oddname to gunzip)
This commit is contained in:
Robert Griebl
2002-05-15 22:13:47 +00:00
parent 7ac868460a
commit f6495eb767
6 changed files with 58 additions and 4 deletions

View File

@@ -467,6 +467,11 @@
#ifdef CONFIG_UNAME
APPLET(uname, uname_main, _BB_DIR_BIN)
#endif
#ifdef CONFIG_GUNZIP
# ifdef CONFIG_FEATURE_UNCOMPRESS
APPLET_ODDNAME("uncompress", gunzip_main, _BB_DIR_BIN, gunzip)
# endif
#endif
#ifdef CONFIG_UNIQ
APPLET(uniq, uniq_main, _BB_DIR_USR_BIN)
#endif