Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:pending commit in: targets/support/
Date: Tue, 02 Sep 2014 02:43:47
Message-Id: 1409622060.fffe274d8e8d2e131c0f483e8e61659d4ed51cc8.dol-sen@gentoo
1 commit: fffe274d8e8d2e131c0f483e8e61659d4ed51cc8
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 1 18:12:40 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Tue Sep 2 01:41:00 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=fffe274d
7
8 chroot-functions.sh: Remove --nodeps option from portage update.
9
10 This option prevented new deps from being installed with a portage upgrade.
11
12 ---
13 targets/support/chroot-functions.sh | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh
17 index 5c30537..ce56157 100755
18 --- a/targets/support/chroot-functions.sh
19 +++ b/targets/support/chroot-functions.sh
20 @@ -171,7 +171,7 @@ setup_pkgmgr(){
21 # just let emerge @system could merge it.
22 # Use --update or portage won't reinstall the same version.
23 [ -e /etc/portage/make.conf ] && echo 'USE="${USE} build"' >> /etc/portage/make.conf
24 - run_merge --oneshot --nodeps --update sys-apps/portage
25 + run_merge --oneshot --update sys-apps/portage
26 sed -i '/USE="${USE} build"/d' /etc/portage/make.conf
27 }