diff options
author | 2023-03-11 11:44:17 -0500 | |
---|---|---|
committer | 2023-03-13 18:02:49 +0000 | |
commit | 8dfdd1d61be81b8f378acf4d0fda14ce0e181123 (patch) | |
tree | 41bbe14afbf685de89f66b8caa65a2a25148e518 /media-libs/codec2 | |
parent | dev-perl/Moo: Add missing Class-XSAccessor dep (diff) | |
download | gentoo-8dfdd1d61be81b8f378acf4d0fda14ce0e181123.tar.gz gentoo-8dfdd1d61be81b8f378acf4d0fda14ce0e181123.tar.bz2 gentoo-8dfdd1d61be81b8f378acf4d0fda14ce0e181123.zip |
media-libs/codec2: disable tests in configure phase for now
Tries to look for octave during configure phase if unit tests are turned
on and bails out during configure if it cannot find it. Since we have
test dependency disabled for now, don't flip this configure flag.
Bug: https://bugs.gentoo.org/896112
Signed-off-by: Matoro Mahri <matoro@users.noreply.github.com>
Closes: https://github.com/gentoo/gentoo/pull/30055
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/codec2')
-rw-r--r-- | media-libs/codec2/codec2-1.0.5.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/media-libs/codec2/codec2-1.0.5.ebuild b/media-libs/codec2/codec2-1.0.5.ebuild index 6bb8b64fb122..b5913162c667 100644 --- a/media-libs/codec2/codec2-1.0.5.ebuild +++ b/media-libs/codec2/codec2-1.0.5.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 @@ -23,7 +23,12 @@ RESTRICT="test" multilib_src_configure() { local mycmakeargs=( - -DUNITTEST=$(usex test) + # tries to look for octave during configure phase if unit + # tests are turned on and bails out during configure if it + # cannot find it. since we have test dependency disabled + # for now, don't flip this configure flag + # -DUNITTEST=$(usex test) # reenable once tests wired up + -DUNITTEST=no -DINSTALL_EXAMPLES=$(usex examples) ) |