xbps-src: handle old base-files pkgs too.

This commit is contained in:
Juan RP 2015-06-03 10:50:57 +02:00
parent d56c479cb8
commit 49bb3056a5
1 changed files with 5 additions and 1 deletions

View File

@ -282,7 +282,11 @@ install_bbootstrap() {
msg_error "Failed to install bootstrap packages!\n"
fi
# Reconfigure base-files to create dirs/symlinks.
XBPS_ARCH=$XBPS_TARGET_PKG xbps-reconfigure -r $XBPS_MASTERDIR -f base-files &>/dev/null
if xbps-query -r $XBPS_MASTERDIR base-directories &>/dev/null; then
XBPS_ARCH=$XBPS_TARGET_PKG xbps-reconfigure -r $XBPS_MASTERDIR -f base-directories &>/dev/null
else
XBPS_ARCH=$XBPS_TARGET_PKG xbps-reconfigure -r $XBPS_MASTERDIR -f base-files &>/dev/null
fi
msg_normal "Installed bootstrap successfully!\n"
chroot_prepare $XBPS_TARGET_PKG || msg_error "Failed to initialize chroot!\n"
}