Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Wed, 13 Mar 2019 14:14:42
Message-Id: 1552409172.64926170d7df734cfec916a7787975a32962e206.grobian@gentoo
1 commit: 64926170d7df734cfec916a7787975a32962e206
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 12 16:46:12 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 12 16:46:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=64926170
7
8 scripts/bootstrap-prefix: fix bootstrap on 64-bits solaris
9
10 The workaround to put the 64-bits libgcc_s in tmp/tmp only works when
11 tmp/tmp exists, which it doesn't by default.
12
13 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
14
15 scripts/bootstrap-prefix.sh | 1 +
16 1 file changed, 1 insertion(+)
17
18 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
19 index d014d9dbb2..f70c99ce58 100755
20 --- a/scripts/bootstrap-prefix.sh
21 +++ b/scripts/bootstrap-prefix.sh
22 @@ -1598,6 +1598,7 @@ bootstrap_stage2() {
23 # specific libgcc_s, but existing objs need to find this
24 # libgcc_s for as long as they are around (bash->libreadline)
25 LDFLAGS="${LDFLAGS} -R${ROOT}/tmp/tmp"
26 + mkdir -p "${ROOT}"/tmp/tmp/
27 cp "${libgccs64}" "${ROOT}"/tmp/tmp/
28 fi