xbps-src: do not fail if XBPS_CACHEDIR is unset.

This commit is contained in:
Juan RP 2011-06-26 01:51:58 +02:00
parent 8b40d5cd68
commit 4d086d2b1d

View file

@ -59,6 +59,10 @@ mount_chroot_fs()
;;
*) blah=/${f};;
esac
if [ -z "$XBPS_CACHEDIR" -a "$f" = "cachedir" ]; then
echo "unset, ignoring."
continue
fi
[ ! -d ${blah} ] && echo "failed." && continue
@@XBPS_INSTALL_LIBEXECDIR@@/xbps-src-chroot-capmount \
${dowrite} ${blah} ${XBPS_MASTERDIR}/${f} \