diff options
author | Sam James <sam@gentoo.org> | 2021-05-28 17:37:07 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-28 17:37:07 +0200 |
commit | 72a8f02430736c23ef9b60a47dd83ee945578d9b (patch) | |
tree | 83cccc92f97c5545fef70ac9e2abbc2f961e091e /media-libs/opus/files | |
parent | media-libs/opus: disable intrinsics automagic (diff) | |
download | gentoo-72a8f02430736c23ef9b60a47dd83ee945578d9b.tar.gz gentoo-72a8f02430736c23ef9b60a47dd83ee945578d9b.tar.bz2 gentoo-72a8f02430736c23ef9b60a47dd83ee945578d9b.zip |
media-libs/opus: fix libdir in installed M4 macro
Most consumers seem to work around this fine nowdays,
but we should still fix the macro.
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-libs/opus/files')
-rw-r--r-- | media-libs/opus/files/opus-1.3.1-libdir-macro.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/media-libs/opus/files/opus-1.3.1-libdir-macro.patch b/media-libs/opus/files/opus-1.3.1-libdir-macro.patch new file mode 100644 index 000000000000..4f57e54ddf00 --- /dev/null +++ b/media-libs/opus/files/opus-1.3.1-libdir-macro.patch @@ -0,0 +1,11 @@ +--- a/opus.m4 ++++ b/opus.m4 +@@ -22,7 +22,7 @@ AC_ARG_ENABLE(opustest,AC_HELP_STRING([--disable-opustest],[Do not try to compil + elif test "x$opus_prefix" != "x" ; then + OPUS_LIBS="-L$opus_prefix/lib" + elif test "x$prefix" != "xNONE" ; then +- OPUS_LIBS="-L$prefix/lib" ++ OPUS_LIBS="-L${libdir}" + fi + + if test "x$opus_prefix" != "xno" ; then |