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 A32701382C5 for ; Wed, 16 May 2018 13:02:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B596E08EB; Wed, 16 May 2018 13:02:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 68822E08EB for ; Wed, 16 May 2018 13:02:52 +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 A2EF1335C63 for ; Wed, 16 May 2018 13:02:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 010A9297 for ; Wed, 16 May 2018 13:02:49 +0000 (UTC) From: "Michael Haubenwallner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Haubenwallner" Message-ID: <1526475744.f4fb1c78288639ebb25dc6ec5f00df4b2de6912f.haubi@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: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: f4fb1c78288639ebb25dc6ec5f00df4b2de6912f X-VCS-Branch: master Date: Wed, 16 May 2018 13:02:49 +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-Archives-Salt: fb1c702c-47cc-43e8-8c58-ba36a3f9a817 X-Archives-Hash: 07512c88c161008b588af7141b9fb619 commit: f4fb1c78288639ebb25dc6ec5f00df4b2de6912f Author: Michael Haubenwallner gentoo org> AuthorDate: Wed May 16 13:02:11 2018 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Wed May 16 13:02:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f4fb1c78 bootstrap-prefix.sh: try to fix 32bit solaris scripts/bootstrap-prefix.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index a7eeaf96f0..45e1d23f57 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -942,6 +942,9 @@ EOP # libgcc_s.so is on Solaris libdir="-L/usr/sfw/lib/64" ;; + *-solaris*) # 32bit + libdir="-L/usr/sfw/lib" + ;; esac # python refuses to find the zlib headers that are built in the offset,