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:44:18
Message-Id: 1488347023.aafba4a1b0c6ec790f10cb4d632b2da522c8b014.jmbsvicetto@gentoo
1 commit: aafba4a1b0c6ec790f10cb4d632b2da522c8b014
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 05:43:43 2017 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 05:43:43 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=aafba4a1
7
8 Fix previous commit and make the USE="bindist" optional.
9
10 Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>
11
12 targets/stage1/stage1-chroot.sh | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh
16 index cc19ab6..af5b060 100755
17 --- a/targets/stage1/stage1-chroot.sh
18 +++ b/targets/stage1/stage1-chroot.sh
19 @@ -23,8 +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 +# We need to ensure the base stage3 has USE="bindist"
26 +# if BINDIST is set to avoid issues with openssl / openssh
27 +[ -e ${clst_make_conf} ] && echo "USE=\"${USE} ${BINDIST}\"" >> ${clst_make_conf}
28
29 # Update stage3
30 if [ -n "${clst_update_seed}" ]; then