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 19B7C1381F1 for ; Sat, 6 Jan 2018 20:59:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3237DE0878; Sat, 6 Jan 2018 20:59:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1017AE0878 for ; Sat, 6 Jan 2018 20:59:42 +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 1EBF9335C07 for ; Sat, 6 Jan 2018 20:59:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7C061D for ; Sat, 6 Jan 2018 20:59:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1515272371.b2cea88960f84014b4e7d58b2f8246fda86987d5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/mupen64plus-ui-console/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/mupen64plus-ui-console/mupen64plus-ui-console-2.5.ebuild X-VCS-Directories: games-emulation/mupen64plus-ui-console/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b2cea88960f84014b4e7d58b2f8246fda86987d5 X-VCS-Branch: master Date: Sat, 6 Jan 2018 20:59:40 +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: 1052adb3-9412-40dd-a0cc-5918041221b5 X-Archives-Hash: 24f24458c18d4e522056315718ac47c7 commit: b2cea88960f84014b4e7d58b2f8246fda86987d5 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 6 20:54:47 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 6 20:59:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2cea889 games-emulation/mupen64plus-ui-console: Remove -fno-PIE to fix build Remove the Makefile code responsible for appending -fPIE/-fno-PIE to ensure that the compiler defaults are respected, and the package is built correctly and consistently. Closes: https://bugs.gentoo.org/622122 .../mupen64plus-ui-console/mupen64plus-ui-console-2.5.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/games-emulation/mupen64plus-ui-console/mupen64plus-ui-console-2.5.ebuild b/games-emulation/mupen64plus-ui-console/mupen64plus-ui-console-2.5.ebuild index f3b2fb7bfea..5f293ce409e 100644 --- a/games-emulation/mupen64plus-ui-console/mupen64plus-ui-console-2.5.ebuild +++ b/games-emulation/mupen64plus-ui-console/mupen64plus-ui-console-2.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -28,6 +28,9 @@ src_prepare() { # avoid implicitly appending CPU flags sed -i -e 's:-mmmx::g' -e 's:-msse::g' projects/unix/Makefile || die + + # avoid appending -fPIE/-fno-PIE + sed -i -e '/^if.*PIE/,/endif/d' projects/unix/Makefile || die } src_compile() {