summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Howard <gavin@yzena.com>2022-11-18 07:41:12 -0700
committerIonen Wolkens <ionen@gentoo.org>2022-11-19 01:03:20 -0500
commitaf57a51586af3149c49d1584dfc724f74312eaff (patch)
tree3b5613547f1573a2988bb5584dd914525bf9b0d0 /sci-calculators
parentprofiles/arch/loong: remove the media-sound/jack2[ieee1394] package.use.mask (diff)
downloadgentoo-af57a51586af3149c49d1584dfc724f74312eaff.tar.gz
gentoo-af57a51586af3149c49d1584dfc724f74312eaff.tar.bz2
gentoo-af57a51586af3149c49d1584dfc724f74312eaff.zip
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 <gavin@yzena.com> 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 <ionen@gentoo.org>
Diffstat (limited to 'sci-calculators')
-rw-r--r--sci-calculators/bc-gh/bc-gh-6.1.1.ebuild2
1 files changed, 1 insertions, 1 deletions
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
}