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 CF9521396D1 for ; Thu, 14 Sep 2017 11:51:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCDEA1FC0B6; Thu, 14 Sep 2017 11:51:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 9823E1FC0AB for ; Thu, 14 Sep 2017 11:51:54 +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 9D45D33BEA7 for ; Thu, 14 Sep 2017 11:51:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C7A49084 for ; Thu, 14 Sep 2017 11:51:51 +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: <1505389855.b82227e9968d42658fa52d3742e4a6b3d59e8ffd.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: b82227e9968d42658fa52d3742e4a6b3d59e8ffd X-VCS-Branch: master Date: Thu, 14 Sep 2017 11:51:51 +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: 2e96c9ac-97ba-422e-8b12-8758f288c10c X-Archives-Hash: db0a84e7193b784d358635e7ea92fcd8 commit: b82227e9968d42658fa52d3742e4a6b3d59e8ffd Author: Michael Haubenwallner gentoo org> AuthorDate: Thu Sep 14 11:50:55 2017 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Thu Sep 14 11:50:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=b82227e9 bootstrap-prefix.sh (stage1 xz): disable-assembler SuSE 11.1 does have GNU binutils-2.20, choking on crc32_x86.s. scripts/bootstrap-prefix.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index df7af9ac90..b290cc90d7 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -757,6 +757,9 @@ bootstrap_gnu() { # Gentoo Bug 400831, fails on Ubuntu with libssl-dev installed [[ ${PN} == "wget" ]] && myconf="${myconf} --without-ssl" + # SuSE 11.1 has GNU binutils-2.20, choking on crc32_x86 + [[ ${PN} == "xz" ]] && myconf="${myconf} --disable-assembler" + # we do not have pkg-config to find lib/libffi-*/include/ffi.h [[ ${PN} == "libffi" ]] && sed -i -e '/includesdir =/s/=.*/= $(includedir)/' include/Makefile.in