diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:38:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:38:30 +0000 |
commit | 335b63d8d1876ce4e172ebcc9d64544785682244 (patch) | |
tree | 14183fd728ce51ae10baee70f7d8f72c39d30649 /archival | |
parent | 07c394e69b0cfa7cd30e97ffc6edb0d857905f45 (diff) | |
download | busybox-w32-335b63d8d1876ce4e172ebcc9d64544785682244.tar.gz busybox-w32-335b63d8d1876ce4e172ebcc9d64544785682244.tar.bz2 busybox-w32-335b63d8d1876ce4e172ebcc9d64544785682244.zip |
make a few struct bb_applet members conditional
rename sllep_and_die -> xfunc_die
make fflush_stdout_and_exit NOFORK-safe
fix some buglets found by randomconfig
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/Kbuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/archival/libunarchive/Kbuild b/archival/libunarchive/Kbuild index 010043c4c..412a2332d 100644 --- a/archival/libunarchive/Kbuild +++ b/archival/libunarchive/Kbuild | |||
@@ -35,12 +35,15 @@ DPKG_FILES:= \ | |||
35 | get_header_tar.o \ | 35 | get_header_tar.o \ |
36 | filter_accept_list_reassign.o | 36 | filter_accept_list_reassign.o |
37 | 37 | ||
38 | # open_transformer uses fork. Compile it only if absolutely necessary | 38 | # open_transformer uses fork(). Compile it only if absolutely necessary |
39 | lib-$(CONFIG_RPM) += open_transformer.o | 39 | lib-$(CONFIG_RPM) += open_transformer.o |
40 | lib-$(CONFIG_FEATURE_TAR_BZIP2) += open_transformer.o | 40 | lib-$(CONFIG_FEATURE_TAR_BZIP2) += open_transformer.o |
41 | lib-$(CONFIG_FEATURE_TAR_LZMA) += open_transformer.o | 41 | lib-$(CONFIG_FEATURE_TAR_LZMA) += open_transformer.o |
42 | lib-$(CONFIG_FEATURE_TAR_GZIP) += open_transformer.o | 42 | lib-$(CONFIG_FEATURE_TAR_GZIP) += open_transformer.o |
43 | lib-$(CONFIG_FEATURE_TAR_COMPRESS) += open_transformer.o | 43 | lib-$(CONFIG_FEATURE_TAR_COMPRESS) += open_transformer.o |
44 | lib-$(CONFIG_FEATURE_DEB_TAR_GZ) += open_transformer.o | ||
45 | lib-$(CONFIG_FEATURE_DEB_TAR_BZ2) += open_transformer.o | ||
46 | lib-$(CONFIG_FEATURE_DEB_TAR_LZMA) += open_transformer.o | ||
44 | 47 | ||
45 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o | 48 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o |
46 | lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o | 49 | lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o |