commit: fffe274d8e8d2e131c0f483e8e61659d4ed51cc8 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Mon Sep 1 18:12:40 2014 +0000 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com> CommitDate: Tue Sep 2 01:41:00 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=fffe274d
chroot-functions.sh: Remove --nodeps option from portage update. This option prevented new deps from being installed with a portage upgrade. --- targets/support/chroot-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 5c30537..ce56157 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 }