commit: c0412dfb96cb1a213f174ece9a1629243f14b6e0 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Mon Aug 26 14:45:18 2024 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Mon Aug 26 15:34:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0412dfb
dev-db/sqlite: Fix build issue in the test suite when USE='-tcl' Test phase will errors out starting with commit https://github.com/sqlite/sqlite/commit/21363ac78df6751655c33372a7277512531b9570 as we set HAVE_TCL to 0 in the test phase and with the added check the build aborts regardless of the fact that 'tclConfig.sh' was found by the configure script previously. We can avoid setting the variable manually and the build will suceed with the intended behavior kept. Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> dev-db/sqlite/sqlite-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-db/sqlite/sqlite-9999.ebuild b/dev-db/sqlite/sqlite-9999.ebuild index 7570a655878b..272447245cde 100644 --- a/dev-db/sqlite/sqlite-9999.ebuild +++ b/dev-db/sqlite/sqlite-9999.ebuild @@ -356,7 +356,7 @@ multilib_src_test() { addpredict "/test.db" addpredict "/ÿ.db" - emake -Onone HAVE_TCL="$(usex tcl 1 "")" $(usex debug 'fulltest' 'test') + emake -Onone $(usex debug 'fulltest' 'test') } multilib_src_install() {
