From af57a51586af3149c49d1584dfc724f74312eaff Mon Sep 17 00:00:00 2001 From: Gavin Howard Date: Fri, 18 Nov 2022 07:41:12 -0700 Subject: sci-calculators/bc-gh: Fix QA issues with pre-stripping The problem was that the argument for disabling pre-stripping came *before* the predefined build, which then overrode it. I just reversed the arguments; this is what I should have done at the beginning anyway since that's how the predefined build arguments were designed. Signed-off-by: Gavin D. Howard Closes: https://bugs.gentoo.org/881777 Closes: https://bugs.gentoo.org/881779 Closes: https://github.com/gentoo/gentoo/pull/28325 Signed-off-by: Ionen Wolkens --- sci-calculators/bc-gh/bc-gh-6.1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sci-calculators') diff --git a/sci-calculators/bc-gh/bc-gh-6.1.1.ebuild b/sci-calculators/bc-gh/bc-gh-6.1.1.ebuild index abe79823cd94..33766bb56a93 100644 --- a/sci-calculators/bc-gh/bc-gh-6.1.1.ebuild +++ b/sci-calculators/bc-gh/bc-gh-6.1.1.ebuild @@ -14,5 +14,5 @@ KEYWORDS="~amd64 ~arm64 ~x86" S="${WORKDIR}/bc-${PV}" src_configure() { - EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GTl -pGNU || die + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -pGNU -GTl || die } -- cgit v1.2.3-65-gdbad