From 307f1e836f7255e475b350bd802fc826193948c3 Mon Sep 17 00:00:00 2001 From: r00t Date: Sat, 20 Dec 2014 02:33:21 -0500 Subject: [PATCH] fixing chroot building bug --- lib/mk.chroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mk.chroot.sh b/lib/mk.chroot.sh index cea914a..4097523 100755 --- a/lib/mk.chroot.sh +++ b/lib/mk.chroot.sh @@ -173,7 +173,7 @@ EOF ${CHROOTCMD} ${i}/ pacman -Syy >> "${LOGFILE}.${FUNCNAME}" 2>&1 for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done - ${CHROOTCMD} ${i}/ pacman -S --noconfirm --needed base >> "${LOGFILE}.${FUNCNAME}" 2>&1 + ${CHROOTCMD} ${i}/ pacman -S --noconfirm --needed base syslinux >> "${LOGFILE}.${FUNCNAME}" 2>&1 for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done echo "Done." echo -n "...Upgrading any outdated packages..."