diff options
author | David Seifert <soap@gentoo.org> | 2020-06-21 15:19:49 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-06-21 15:19:49 +0200 |
commit | 4a4a3b79a1176a6da1c46adc51697be00dc7fe4e (patch) | |
tree | bae8e34aee91b1607c613561da4634488c85ed92 /media-sound | |
parent | media-sound/muse: [QA] Add AM_PROG_AR (diff) | |
download | gentoo-4a4a3b79a1176a6da1c46adc51697be00dc7fe4e.tar.gz gentoo-4a4a3b79a1176a6da1c46adc51697be00dc7fe4e.tar.bz2 gentoo-4a4a3b79a1176a6da1c46adc51697be00dc7fe4e.zip |
media-sound/flake: [QA] Pass AR/RANLIB to build system
Closes: https://bugs.gentoo.org/724690
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/flake/flake-0.11.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/media-sound/flake/flake-0.11.ebuild b/media-sound/flake/flake-0.11.ebuild index 24f2e7b6ee1b..caa19b932b0e 100644 --- a/media-sound/flake/flake-0.11.ebuild +++ b/media-sound/flake/flake-0.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,8 +16,10 @@ KEYWORDS="amd64 x86" src_configure() { # NIH configure script ./configure \ + --ar="$(tc-getAR)" \ --cc="$(tc-getCC)" \ - --prefix="${D}"/usr \ + --ranlib="$(tc-getRANLIB)" \ + --prefix="${ED}"/usr \ --disable-opts \ --disable-debug \ --disable-strip || die "configure failed" |