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 31CCC1381F3 for ; Sun, 20 Sep 2020 15:59:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75051E0916; Sun, 20 Sep 2020 15:59:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5A8D5E0916 for ; Sun, 20 Sep 2020 15:59:08 +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 69B6533BE68 for ; Sun, 20 Sep 2020 15:59:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E95D126 for ; Sun, 20 Sep 2020 15:59:05 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1600617538.2a71544224f70c97980bafacc7ab5a360224b2a8.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/statifier/statifier-1.7.4-r1.ebuild X-VCS-Directories: dev-util/statifier/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 2a71544224f70c97980bafacc7ab5a360224b2a8 X-VCS-Branch: master Date: Sun, 20 Sep 2020 15:59:05 +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: fb7f30a0-9bd7-48d0-93cf-2c445dd97878 X-Archives-Hash: e35daa84a5d28f58dc2da13644b2aa4d commit: 2a71544224f70c97980bafacc7ab5a360224b2a8 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Sep 20 15:58:31 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Sep 20 15:58:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a715442 dev-util/statifier: fix compilation Closes: https://bugs.gentoo.org/743298 Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Conrad Kostecki gentoo.org> dev-util/statifier/statifier-1.7.4-r1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-util/statifier/statifier-1.7.4-r1.ebuild b/dev-util/statifier/statifier-1.7.4-r1.ebuild index 5bdd7e9ca4e..f5697dd1a24 100644 --- a/dev-util/statifier/statifier-1.7.4-r1.ebuild +++ b/dev-util/statifier/statifier-1.7.4-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 MULTILIB_COMPAT=( abi_x86_{32,64} ) -inherit multilib-build toolchain-funcs +inherit flag-o-matic multilib-build toolchain-funcs DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables" HOMEPAGE="http://statifier.sourceforge.net" @@ -32,13 +32,16 @@ src_prepare() { # Don't compile 32-bit on amd64 no-multilib profile if ! use abi_x86_32; then - sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die + sed -e 's/ELF32 .*/ELF32 := no/g' -i configs/config.x86_64 || die fi } src_configure() { tc-export CC + # Debug flags are known to cause compile failure + filter-flags "-g*" + # Fix permissions, as configure is not marked executable chmod +x configure || die econf @@ -53,6 +56,5 @@ src_install() { # Package complains with MAKEOPTS > -j1 emake -j1 DESTDIR="${ED}" install - # Install docs einstalldocs }