From: Brian Dolbec Date: Mon, 1 Sep 2014 18:12:40 +0000 (-0700) Subject: chroot-functions.sh: Remove --nodeps option from portage update. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5ce1d5852a151ca2da6b592a6826c73acf74b282;p=catalyst.git chroot-functions.sh: Remove --nodeps option from portage update. This option prevented new deps from being installed with a portage upgrade. --- diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 5c30537b..ce56157e 100755 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -171,7 +171,7 @@ setup_pkgmgr(){ # just let emerge @system could merge it. # Use --update or portage won't reinstall the same version. [ -e /etc/portage/make.conf ] && echo 'USE="${USE} build"' >> /etc/portage/make.conf - run_merge --oneshot --nodeps --update sys-apps/portage + run_merge --oneshot --update sys-apps/portage sed -i '/USE="${USE} build"/d' /etc/portage/make.conf }