From a306a8927c38add6a043238c426add96cc66fb7f Mon Sep 17 00:00:00 2001 From: Thomas Deutschmann Date: Thu, 5 Dec 2019 18:41:33 +0100 Subject: dev-util/strace: do not copy CFLAGS to CFLAGS_FOR_{M32,MX32} Closes: https://bugs.gentoo.org/701516 Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Thomas Deutschmann --- .../files/strace-5.4-fix-LTO-CFLAGS-handling.patch | 24 ++++++++++++++++++++++ dev-util/strace/strace-5.4.ebuild | 8 +++++++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 dev-util/strace/files/strace-5.4-fix-LTO-CFLAGS-handling.patch (limited to 'dev-util/strace') diff --git a/dev-util/strace/files/strace-5.4-fix-LTO-CFLAGS-handling.patch b/dev-util/strace/files/strace-5.4-fix-LTO-CFLAGS-handling.patch new file mode 100644 index 000000000000..0f277962b958 --- /dev/null +++ b/dev-util/strace/files/strace-5.4-fix-LTO-CFLAGS-handling.patch @@ -0,0 +1,24 @@ +Based on 52ac53e96143f6aac52738f6e385f75203a68a7b +[PATCH] configure.ac: do not copy CFLAGS to CFLAGS_FOR_{M32,MX32} + +--- a/configure.ac ++++ b/configure.ac +@@ -984,11 +984,14 @@ AS_IF([test x$arch = xaarch64], + ]) + ]) + +-# Setting default compiler variables for personalities ++# Set default compiler variables for personalities. + m4_foreach([pers], [M32, MX32], dnl +- [m4_foreach([var], [CC, CPP, CFLAGS, CPPFLAGS], dnl +- [[: ${]var[_FOR_]pers[=$]var[}] +- AC_SUBST(var[_FOR_]pers)])]) ++ [m4_foreach([var], [CC, CPP, CPPFLAGS], dnl ++ [[: ${]var[_FOR_]pers[=$]var[}] ++ AC_SUBST(var[_FOR_]pers)]) dnl ++ m4_foreach([var], [CFLAGS], dnl ++ [[: ${]var[_FOR_]pers[=][}] ++ AC_SUBST(var[_FOR_]pers)])]) + + st_MPERS([m32], [aarch64|powerpc64|s390x|sparc64|tile|x32|x86_64]) + st_MPERS([mx32], [x86_64]) diff --git a/dev-util/strace/strace-5.4.ebuild b/dev-util/strace/strace-5.4.ebuild index db378889c0d5..31a56378b3f8 100644 --- a/dev-util/strace/strace-5.4.ebuild +++ b/dev-util/strace/strace-5.4.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit flag-o-matic toolchain-funcs +inherit flag-o-matic toolchain-funcs autotools if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/strace/strace.git" @@ -37,9 +37,15 @@ RDEPEND=" perl? ( dev-lang/perl ) " +PATCHES=( "${FILESDIR}"/${P}-fix-LTO-CFLAGS-handling.patch ) + src_prepare() { default + # Needed for applied patch (#701516). Remove with next version. + # Don't forget about autotools inherit. + eautoreconf + if [[ ! -e configure ]] ; then # git generation sed /autoreconf/d -i bootstrap || die -- cgit v1.2.3-65-gdbad