diff options
author | Sam James <sam@gentoo.org> | 2021-03-09 17:41:46 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-09 17:42:29 +0000 |
commit | 4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17 (patch) | |
tree | bb91e8fcf87967dd1ddf22d77319bf521a77c17f /media-sound | |
parent | app-emulation/virtualbox-modules: Fixed build with binutils-2.36 (diff) | |
download | gentoo-4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17.tar.gz gentoo-4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17.tar.bz2 gentoo-4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17.zip |
media-sound/alsaplayer: fix libdir
Thanks-to: Samuel Bauer <samuel.bauer@yahoo.fr>
Closes: https://bugs.gentoo.org/733896
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild index 27659636bbb5..374beb56d611 100644 --- a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild +++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -48,6 +48,10 @@ src_prepare() { -e 's:-O2 -funroll-loops -finline-functions -ffast-math::' \ configure.ac || die + sed -i \ + -e "s:/usr/lib:/usr/$(get_libdir):" \ + configure.ac config.rpath || die + eautoreconf } |