diff options
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/Kbuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/archival/libunarchive/Kbuild b/archival/libunarchive/Kbuild index 4e1454184..010043c4c 100644 --- a/archival/libunarchive/Kbuild +++ b/archival/libunarchive/Kbuild | |||
@@ -26,7 +26,6 @@ lib-y:= \ | |||
26 | \ | 26 | \ |
27 | data_align.o \ | 27 | data_align.o \ |
28 | find_list_entry.o \ | 28 | find_list_entry.o \ |
29 | open_transformer.o \ | ||
30 | init_handle.o | 29 | init_handle.o |
31 | 30 | ||
32 | GUNZIP_FILES:= check_header_gzip.o decompress_unzip.o | 31 | GUNZIP_FILES:= check_header_gzip.o decompress_unzip.o |
@@ -36,6 +35,13 @@ DPKG_FILES:= \ | |||
36 | get_header_tar.o \ | 35 | get_header_tar.o \ |
37 | filter_accept_list_reassign.o | 36 | filter_accept_list_reassign.o |
38 | 37 | ||
38 | # open_transformer uses fork. Compile it only if absolutely necessary | ||
39 | lib-$(CONFIG_RPM) += open_transformer.o | ||
40 | lib-$(CONFIG_FEATURE_TAR_BZIP2) += open_transformer.o | ||
41 | lib-$(CONFIG_FEATURE_TAR_LZMA) += open_transformer.o | ||
42 | lib-$(CONFIG_FEATURE_TAR_GZIP) += open_transformer.o | ||
43 | lib-$(CONFIG_FEATURE_TAR_COMPRESS) += open_transformer.o | ||
44 | |||
39 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o | 45 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o |
40 | lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o | 46 | lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o |
41 | lib-$(CONFIG_UNLZMA) += decompress_unlzma.o | 47 | lib-$(CONFIG_UNLZMA) += decompress_unlzma.o |