Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/
Date: Mon, 01 Oct 2018 16:30:29
Message-Id: 1538411200.ab9bdbdf60caab039dab2791162098ae8d0657a7.dolsen@gentoo
1 commit: ab9bdbdf60caab039dab2791162098ae8d0657a7
2 Author: Michael Everitt <m.j.everitt <AT> iee <DOT> org>
3 AuthorDate: Tue Sep 11 03:52:51 2018 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 1 16:26:40 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ab9bdbdf
7
8 Silence warning about binpkgs with non-matching USE flags
9
10 targets/support/chroot-functions.sh | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh
14 index ceef21ca..506d43f2 100755
15 --- a/targets/support/chroot-functions.sh
16 +++ b/targets/support/chroot-functions.sh
17 @@ -151,7 +151,7 @@ setup_myemergeopts(){
18 # if we have PKGCACHE, and either update_seed is empty or 'no', make and use binpkgs
19 elif [ -n "${clst_PKGCACHE}" ] && [ -z "${clst_update_seed}" -o "${clst_update_seed}" = "no" ]
20 then
21 - export clst_myemergeopts="${clst_myemergeopts} --usepkg --buildpkg --newuse"
22 + export clst_myemergeopts="${clst_myemergeopts} --usepkg --buildpkg --binpkg-respect-use=y --newuse"
23 export bootstrap_opts="${bootstrap_opts} -r"
24 fi
25 }