commit: f5348c1f01185eb16a04b19ad20f1d17889e5f42 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed May 10 22:03:54 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed May 10 22:03:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5348c1f
media-libs/libvpx: unset DIST_DIR in ebuild Users may set it instead of DISTDIR, can see it happening, and the build system uses it if set. Closes: https://bugs.gentoo.org/905986 Signed-off-by: Sam James <sam <AT> gentoo.org> media-libs/libvpx/libvpx-1.12.0-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-libs/libvpx/libvpx-1.12.0-r1.ebuild b/media-libs/libvpx/libvpx-1.12.0-r1.ebuild index 72ccda036cbe..473b28175c86 100644 --- a/media-libs/libvpx/libvpx-1.12.0-r1.ebuild +++ b/media-libs/libvpx/libvpx-1.12.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -59,6 +59,8 @@ src_configure() { multilib_src_configure() { # bug #357487 unset CODECS + # bug #905986 + unset DIST_DIR # bug #498364: sse doesn't work without sse2 enabled, local myconfargs=(
