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
This commit is contained in:
Michał Górny
2018-01-06 21:54:47 +01:00
parent 70f4b3d470
commit b2cea88960

View File

@@ -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() {