diff options
author | Gavin Howard <gavin@yzena.com> | 2022-11-18 07:41:12 -0700 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-11-19 01:03:20 -0500 |
commit | af57a51586af3149c49d1584dfc724f74312eaff (patch) | |
tree | 3b5613547f1573a2988bb5584dd914525bf9b0d0 /sci-calculators | |
parent | profiles/arch/loong: remove the media-sound/jack2[ieee1394] package.use.mask (diff) | |
download | gentoo-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.ebuild | 2 |
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 } |