xbps-src [chroot]: ignore busybox tar, xz, gzip and bunzip2 applets.

This commit is contained in:
Juan RP 2011-07-01 01:43:19 +02:00
parent cd8259aaa9
commit ca8369eada

View file

@ -236,7 +236,10 @@ create_busybox_links()
cd ${lbindir} || return 1
for f in $(${XBPS_MASTERDIR}/bin/busybox --list); do
[ "$f" = "sh" ] && continue
if [ "$f" = "tar" -o "$f" = "xz" -o \
"$f" = "bzip2" -o "$f" = "gzip" -o "$f" = "sh" ]; then
continue
fi
ln -s ../../../bin/busybox $f
done