xbps-src [chroot]: ignore busybox tar, xz, gzip and bunzip2 applets.
This commit is contained in:
parent
cd8259aaa9
commit
ca8369eada
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue