diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-03-07 22:02:23 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-03-07 22:02:23 +0000 |
commit | c3c22a237b88e73f294ff2b9f91b1d2c42d105d4 (patch) | |
tree | 800845b64d0e9a204743656c4d267cc6c9917cde /archival/Kbuild | |
parent | e192b560aa95b995dbc7f89da2f9a83db793f267 (diff) | |
download | busybox-w32-c3c22a237b88e73f294ff2b9f91b1d2c42d105d4.tar.gz busybox-w32-c3c22a237b88e73f294ff2b9f91b1d2c42d105d4.tar.bz2 busybox-w32-c3c22a237b88e73f294ff2b9f91b1d2c42d105d4.zip |
bunzip2/gunzip/uncompress/unlzma: merge into common code -
fix few corner cases, reduce size by 450 bytes. Update testsuite.
git-svn-id: svn://busybox.net/trunk/busybox@18025 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival/Kbuild')
-rw-r--r-- | archival/Kbuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/Kbuild b/archival/Kbuild index f85e0c2a7..50b90fa93 100644 --- a/archival/Kbuild +++ b/archival/Kbuild | |||
@@ -8,15 +8,15 @@ libs-y += libunarchive/ | |||
8 | 8 | ||
9 | lib-y:= | 9 | lib-y:= |
10 | lib-$(CONFIG_AR) += ar.o | 10 | lib-$(CONFIG_AR) += ar.o |
11 | lib-$(CONFIG_BUNZIP2) += bunzip2.o | 11 | lib-$(CONFIG_BUNZIP2) += bbunzip.o ### bunzip2.o |
12 | lib-$(CONFIG_UNLZMA) += unlzma.o | 12 | lib-$(CONFIG_UNLZMA) += bbunzip.o ### unlzma.o |
13 | lib-$(CONFIG_CPIO) += cpio.o | 13 | lib-$(CONFIG_CPIO) += cpio.o |
14 | lib-$(CONFIG_DPKG) += dpkg.o | 14 | lib-$(CONFIG_DPKG) += dpkg.o |
15 | lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o | 15 | lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o |
16 | lib-$(CONFIG_GUNZIP) += gunzip.o | 16 | lib-$(CONFIG_GUNZIP) += bbunzip.o ### gunzip.o |
17 | lib-$(CONFIG_GZIP) += gzip.o | 17 | lib-$(CONFIG_GZIP) += gzip.o |
18 | lib-$(CONFIG_RPM2CPIO) += rpm2cpio.o | 18 | lib-$(CONFIG_RPM2CPIO) += rpm2cpio.o |
19 | lib-$(CONFIG_RPM) += rpm.o | 19 | lib-$(CONFIG_RPM) += rpm.o |
20 | lib-$(CONFIG_TAR) += tar.o | 20 | lib-$(CONFIG_TAR) += tar.o |
21 | lib-$(CONFIG_UNCOMPRESS) += uncompress.o | 21 | lib-$(CONFIG_UNCOMPRESS) += bbunzip.o ### uncompress.o |
22 | lib-$(CONFIG_UNZIP) += unzip.o | 22 | lib-$(CONFIG_UNZIP) += unzip.o |