diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-27 03:57:08 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-27 03:57:08 +0100 |
commit | 6747bdac88d44d1b3729f56760ae7f6829c85d9f (patch) | |
tree | 87198970457626bddc12246cb42ebd221067795f /archival/dpkg_deb.c | |
parent | ccc9985c455753298a8799a4d12d5f531c67ae81 (diff) |
dpkg-deb: remove unused FEATURE_DPKG_DEB_EXTRACT_ONLY config option
Its usage in C code was removed in 2004.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/dpkg_deb.c')
-rw-r--r-- | archival/dpkg_deb.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c index 0285273fe..d34de254a 100644 --- a/archival/dpkg_deb.c +++ b/archival/dpkg_deb.c @@ -16,18 +16,9 @@ //config: //config: Unless you have a specific application which requires dpkg-deb, //config: say N here. -//config: -//config:config FEATURE_DPKG_DEB_EXTRACT_ONLY -//config: bool "Extract only (-x)" -//config: default n -//config: depends on DPKG_DEB -//config: help -//config: This reduces dpkg-deb to the equivalent of -//config: "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none -//config: of the extra dpkg-deb, ar or tar options are needed, they are linked -//config: to internally. //applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb)) + //kbuild:lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o //usage:#define dpkg_deb_trivial_usage |