diff options
author | Ron Yorston <rmy@pobox.com> | 2024-11-06 09:35:51 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2024-11-06 09:35:51 +0000 |
commit | 8196c9b173b3e22a5fc84d68475e892d2ba05615 (patch) | |
tree | d2b9f7f3ebbad1f55e819759fc8b0c02fa0b017c /archival | |
parent | 5ad83957fa74aafd061afbfb8da14ce3220659a9 (diff) | |
download | busybox-w32-8196c9b173b3e22a5fc84d68475e892d2ba05615.tar.gz busybox-w32-8196c9b173b3e22a5fc84d68475e892d2ba05615.tar.bz2 busybox-w32-8196c9b173b3e22a5fc84d68475e892d2ba05615.zip |
libarchive: pdpmake requires some ar functions
pdpmake, like make, requires get_header_ar.o and unpack_ar_archive.o
from libarchive. This dependency wasn't made explicit in Kbuild.src
so building pdpmake failed unless other applets requiring those files
were enabled (ar, dpkg, dpkg-deb or make).
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libarchive/Kbuild.src | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archival/libarchive/Kbuild.src b/archival/libarchive/Kbuild.src index 1c74250a2..1b1dabbf5 100644 --- a/archival/libarchive/Kbuild.src +++ b/archival/libarchive/Kbuild.src | |||
@@ -48,6 +48,7 @@ lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) | |||
48 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o | 48 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o |
49 | lib-$(CONFIG_CPIO) += get_header_cpio.o | 49 | lib-$(CONFIG_CPIO) += get_header_cpio.o |
50 | lib-$(CONFIG_MAKE) += get_header_ar.o unpack_ar_archive.o | 50 | lib-$(CONFIG_MAKE) += get_header_ar.o unpack_ar_archive.o |
51 | lib-$(CONFIG_PDPMAKE) += get_header_ar.o unpack_ar_archive.o | ||
51 | lib-$(CONFIG_TAR) += get_header_tar.o unsafe_prefix.o | 52 | lib-$(CONFIG_TAR) += get_header_tar.o unsafe_prefix.o |
52 | lib-$(CONFIG_FEATURE_TAR_TO_COMMAND) += data_extract_to_command.o | 53 | lib-$(CONFIG_FEATURE_TAR_TO_COMMAND) += data_extract_to_command.o |
53 | lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o | 54 | lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o |