xbps-src: correctly cleanup masterdir/tmp (really)

previous commit led to
```
rm: refusing to remove '.' or '..' directory: skipping 'void-packages/masterdir/tmp/.'
rm: refusing to remove '.' or '..' directory: skipping 'void-packages/masterdir/tmp/..'
```
This commit is contained in:
Piraty 2020-02-26 19:03:13 +01:00
parent 3ad00b7932
commit c84e307c68

View file

@ -737,8 +737,9 @@ case "$XBPS_TARGET" in
[ -d "$XBPS_BUILDDIR" ] && chmod -R +wX $XBPS_BUILDDIR [ -d "$XBPS_BUILDDIR" ] && chmod -R +wX $XBPS_BUILDDIR
rm -rf \ rm -rf \
$XBPS_BUILDDIR \ $XBPS_BUILDDIR \
$XBPS_DESTDIR \ $XBPS_DESTDIR
$XBPS_MASTERDIR/tmp/* $XBPS_MASTERDIR/tmp/.* rm -rf $XBPS_MASTERDIR/tmp
mkdir -p $XBPS_MASTERDIR/tmp
else else
read_pkg read_pkg
if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then