Fix a bug that portage didn't get rebuilt with the build use flag
authorBrian Dolbec <dolsen@gentoo.org>
Sun, 10 Feb 2013 20:06:15 +0000 (12:06 -0800)
committerBrian Dolbec <dolsen@gentoo.org>
Mon, 4 Mar 2013 04:44:21 +0000 (20:44 -0800)
If clst_PGKCACHE is defined, --newuse was not being added to clst_myemergeopts, so then portage was not being rebuilt if portage was already up to date.

targets/support/chroot-functions.sh

index 35ffbaa558b96971719648827cb6b76807d8d58b..d2074c08ee8000bcb23eded553609d1f400b1f13 100755 (executable)
@@ -168,9 +168,10 @@ setup_pkgmgr(){
        # We need to merge our package manager with USE="build" set in case it is
        # portage to avoid frying our /etc/portage/make.conf file.  Otherwise, we could
        # just let emerge system could merge it.
-       # Use --update or portage won't reinstall the same version.
+       # Use --update or portage won't reinstall the same version later.
+       # Use --newuse to make sure it rebuilds with the "build" use flag.
        [ -e /etc/portage/make.conf ] && echo 'USE="${USE} build"' >> /etc/portage/make.conf
-       run_merge --oneshot --nodeps --update sys-apps/portage
+       run_merge --oneshot --nodeps --update --newuse  sys-apps/portage
        sed -i '/USE="${USE} build"/d' /etc/portage/make.conf
 }