diff options
-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 364f9174c..4bb81ce26 100644 --- a/archival/libunarchive/Kbuild +++ b/archival/libunarchive/Kbuild | |||
@@ -4,7 +4,9 @@ | |||
4 | # | 4 | # |
5 | # Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 5 | # Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
6 | 6 | ||
7 | lib-y:= \ | 7 | lib-y:= |
8 | |||
9 | COMMON_FILES:= \ | ||
8 | \ | 10 | \ |
9 | data_skip.o \ | 11 | data_skip.o \ |
10 | data_extract_all.o \ | 12 | data_extract_all.o \ |
@@ -49,3 +51,7 @@ lib-$(CONFIG_FEATURE_SEAMLESS_GZ) += open_transformer.o decompress_unzip.o | |||
49 | lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o | 51 | lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o |
50 | lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o | 52 | lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o |
51 | lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o | 53 | lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o |
54 | |||
55 | ifneq ($(lib-y),) | ||
56 | lib-y += $(COMMON_FILES) | ||
57 | endif | ||