diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-09-28 00:28:03 +0200 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-09-28 00:28:52 +0200 |
commit | 7140548ab56fa6eb363fd702bcbea370712abf56 (patch) | |
tree | 5c3ae67091e17268d2c152824077c8c2a36ef473 /dev-lang/hare/hare-9999.ebuild | |
parent | app-crypt/tpm2-openssl: Enable tests (diff) | |
download | guru-7140548ab56fa6eb363fd702bcbea370712abf56.tar.gz guru-7140548ab56fa6eb363fd702bcbea370712abf56.tar.bz2 guru-7140548ab56fa6eb363fd702bcbea370712abf56.zip |
dev-lang/hare: Fix PREFIX and QA_FLAGS_IGNORED
Closes: https://bugs.gentoo.org/866473
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Diffstat (limited to 'dev-lang/hare/hare-9999.ebuild')
-rw-r--r-- | dev-lang/hare/hare-9999.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-lang/hare/hare-9999.ebuild b/dev-lang/hare/hare-9999.ebuild index 2497ea2c1..d8353170c 100644 --- a/dev-lang/hare/hare-9999.ebuild +++ b/dev-lang/hare/hare-9999.ebuild @@ -30,8 +30,8 @@ BDEPEND=" " RDEPEND="${DEPEND}" -# hare and harec are built by hare -QA_FLAGS_IGNORED="usr/bin/harec?" +# hare and haredoc are built by hare +QA_FLAGS_IGNORED="usr/bin/hare usr/bin/haredoc" src_configure() { local target_arch @@ -46,8 +46,8 @@ src_configure() { sed -i \ -e 's;=aarch64-;=;' \ -e 's;=riscv64-;=;' \ - -e "s;^ARCH =.*;ARCH=${target_arch};" \ - -e 's;^PREFIX=.*;PREFIX=/usr;' \ + -e "s;^ARCH =.*;ARCH = ${target_arch};" \ + -e 's;^PREFIX =.*;PREFIX = /usr;' \ -e 's;^AS =;AS ?=;' \ -e 's;^LD =;LD ?=;' \ -e 's;^AR =;AR ?=;' \ |