diff options
author | 2014-09-01 11:12:40 -0700 | |
---|---|---|
committer | 2014-09-01 22:40:19 -0700 | |
commit | e22f20373f891a718921d5ca47d2c7b8ea0ac31f (patch) | |
tree | 216b4b831b29c85da9722165c792e12b57b790c9 | |
parent | stage1-controller.sh: Remove some old poor cleaning code (diff) | |
download | catalyst-e22f20373f891a718921d5ca47d2c7b8ea0ac31f.tar.gz catalyst-e22f20373f891a718921d5ca47d2c7b8ea0ac31f.tar.bz2 catalyst-e22f20373f891a718921d5ca47d2c7b8ea0ac31f.zip |
chroot-functions.sh: Remove --nodeps option from portage update.
This option prevented new deps from being installed with a portage upgrade.
-rwxr-xr-x | targets/support/chroot-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |