diff options
author | Eric Andersen | 2004-04-05 13:03:34 +0000 |
---|---|---|
committer | Eric Andersen | 2004-04-05 13:03:34 +0000 |
commit | 762c64fdf1adea2dcb40d44b7e82f7c7f4c14316 (patch) | |
tree | 8f7f1b3dd62981507ae8fa6ec09e90c585aaf527 /archival/libunarchive/Makefile.in | |
parent | 522a2f3b395eec6576c24dbc0b4aa53aacff82f6 (diff) | |
download | busybox-762c64fdf1adea2dcb40d44b7e82f7c7f4c14316.zip busybox-762c64fdf1adea2dcb40d44b7e82f7c7f4c14316.tar.gz |
rename uncompress.c to decompress_uncompress.c
rename unzip.c to decompress_unzip.c
Diffstat (limited to 'archival/libunarchive/Makefile.in')
-rw-r--r-- | archival/libunarchive/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/libunarchive/Makefile.in b/archival/libunarchive/Makefile.in index c0e12a6..5cf5efa 100644 --- a/archival/libunarchive/Makefile.in +++ b/archival/libunarchive/Makefile.in @@ -48,7 +48,7 @@ LIBUNARCHIVE-y:= \ open_transformer.o \ init_handle.o -GUNZIP_FILES:= check_header_gzip.o unzip.o +GUNZIP_FILES:= check_header_gzip.o decompress_unzip.o DPKG_FILES:= \ get_header_ar.o \ unpack_ar_archive.o \ @@ -63,14 +63,14 @@ LIBUNARCHIVE-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_GZ) += $(GUNZIP_FILES) get_header_tar_gz.o LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_BZ2) += decompress_bunzip2.o get_header_tar_bz2.o LIBUNARCHIVE-$(CONFIG_GUNZIP) += $(GUNZIP_FILES) -LIBUNARCHIVE-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += uncompress.o +LIBUNARCHIVE-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += decompress_uncompress.o LIBUNARCHIVE-$(CONFIG_RPM2CPIO) += $(GUNZIP_FILES) get_header_cpio.o LIBUNARCHIVE-$(CONFIG_RPM) += $(GUNZIP_FILES) get_header_cpio.o LIBUNARCHIVE-$(CONFIG_TAR) += get_header_tar.o LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_BZIP2) += decompress_bunzip2.o get_header_tar_bz2.o LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_GZIP) += $(GUNZIP_FILES) get_header_tar_gz.o -LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_COMPRESS) += uncompress.o -LIBUNARCHIVE-$(CONFIG_UNCOMPRESS) += uncompress.o +LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_COMPRESS) += decompress_uncompress.o +LIBUNARCHIVE-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o LIBUNARCHIVE-$(CONFIG_UNZIP) += $(GUNZIP_FILES) libraries-y+=$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR) |