From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 64F0F138335 for ; Wed, 13 Mar 2019 14:14:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B2A1E0921; Wed, 13 Mar 2019 14:14:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52257E0921 for ; Wed, 13 Mar 2019 14:14:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3ADFF335CFB for ; Wed, 13 Mar 2019 14:14:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D60F7582 for ; Wed, 13 Mar 2019 14:14:37 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1552409172.64926170d7df734cfec916a7787975a32962e206.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 64926170d7df734cfec916a7787975a32962e206 X-VCS-Branch: master Date: Wed, 13 Mar 2019 14:14:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0d4f66f0-c2dc-438d-bd63-62f953ce15a7 X-Archives-Hash: 1fe3c7e2863f985f6bb401d76b7c9005 commit: 64926170d7df734cfec916a7787975a32962e206 Author: Fabian Groffen gentoo org> AuthorDate: Tue Mar 12 16:46:12 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Mar 12 16:46:12 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=64926170 scripts/bootstrap-prefix: fix bootstrap on 64-bits solaris The workaround to put the 64-bits libgcc_s in tmp/tmp only works when tmp/tmp exists, which it doesn't by default. Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index d014d9dbb2..f70c99ce58 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1598,6 +1598,7 @@ bootstrap_stage2() { # specific libgcc_s, but existing objs need to find this # libgcc_s for as long as they are around (bash->libreadline) LDFLAGS="${LDFLAGS} -R${ROOT}/tmp/tmp" + mkdir -p "${ROOT}"/tmp/tmp/ cp "${libgccs64}" "${ROOT}"/tmp/tmp/ fi