Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:catalyst_use commit in: targets/stage1/
Date: Wed, 01 Mar 2017 05:25:43
Message-Id: 1488345915.1626e5984c3fdc0790fd8aae30a5dae4b36259da.jmbsvicetto@gentoo
1 commit: 1626e5984c3fdc0790fd8aae30a5dae4b36259da
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 05:25:15 2017 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 05:25:15 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1626e598
7
8 Update seed will fail if we don't have USE="bindist".
9
10 Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>
11
12 targets/stage1/stage1-chroot.sh | 3 +++
13 1 file changed, 3 insertions(+)
14
15 diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh
16 index ce57dfb..cc19ab6 100755
17 --- a/targets/stage1/stage1-chroot.sh
18 +++ b/targets/stage1/stage1-chroot.sh
19 @@ -23,6 +23,9 @@ fi
20 ## Setup seed pkgmgr to ensure latest
21 clst_root_path=/ setup_pkgmgr "build"
22
23 +# We need to ensure the base stage3 has USE="bindist" to avoid issues with openssl / openssh
24 +[ -e ${clst_make_conf} ] && echo "USE=\"${USE} bindst\"" >> ${clst_make_conf}
25 +
26 # Update stage3
27 if [ -n "${clst_update_seed}" ]; then
28 if [ "${clst_update_seed}" == "yes" ]; then