package updates, and it keeps dying on this strange point in the build.

This commit is contained in:
brent s. 2014-12-23 11:13:49 -05:00
parent 10363febf1
commit 4d06a97213
2 changed files with 10 additions and 5 deletions

View File

@ -75,7 +75,7 @@ ed
efibootmgr
efivar
elfutils
elilo-efi
#elilo-efi
elinks
etc-update
ethtool
@ -146,7 +146,7 @@ libisoburn
lftp
links
localepurge
logkeys
#logkeys
logkeys-keymaps
lm_sensors
lrzsz
@ -178,7 +178,7 @@ mtd-utils
mtools
mtr
mtree
mtx
#mtx
multipath-tools
myrescue
nbd
@ -318,6 +318,7 @@ whdd
whois
wifite
wipe
wireshark-cli
wpscrack
wput
x11vnc

View File

@ -231,7 +231,9 @@ EOF
then
${CHROOTCMD} ${CHROOTDIR32}/ bash -c "yaourt -S --needed --noconfirm ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
fi
for x in $(find ${CHROOTDIR32}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
set +e
for x in $(find ${CHROOTDIR32}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
set -e
echo "Done."
# 64-bit
@ -241,7 +243,9 @@ EOF
then
${CHROOTCMD} ${CHROOTDIR64}/ bash -c "yaourt -S --needed --noconfirm ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
fi
for x in $(find ${CHROOTDIR64}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
set +e
for x in $(find ${CHROOTDIR64}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
set -e
echo "Done."

echo "Syncing overlay..."