Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:pending commit in: targets/stage2/
Date: Tue, 01 Sep 2015 05:59:13
Message-Id: 1441051595.f72c667b85d28e2a564616ed3e55236e08d5151b.dolsen@gentoo
1 commit: f72c667b85d28e2a564616ed3e55236e08d5151b
2 Author: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 20:06:35 2015 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 20:06:35 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f72c667b
7
8 make stage2-chroot.sh respect bindist
9
10 targets/stage2/stage2-chroot.sh | 6 ++++++
11 1 file changed, 6 insertions(+)
12
13 diff --git a/targets/stage2/stage2-chroot.sh b/targets/stage2/stage2-chroot.sh
14 index 61f5261..519db79 100755
15 --- a/targets/stage2/stage2-chroot.sh
16 +++ b/targets/stage2/stage2-chroot.sh
17 @@ -17,5 +17,11 @@ then
18 fi
19 fi
20
21 +# Set bindist USE flag if clst_BINDIST is set
22 +[ -e "${clst_make_conf}" ] && [ -n "${clst_BINDIST}" ] && echo "USE=\"\${USE} bindist\"" >> "${clst_make_conf}"
23 +
24 ## START BUILD
25 /usr/portage/scripts/bootstrap.sh ${bootstrap_opts} || exit 1
26 +
27 +# Clean-up USE again
28 +sed -i "/USE=\"\${USE} bindist\"/d" "${clst_make_conf}"