From c0412dfb96cb1a213f174ece9a1629243f14b6e0 Mon Sep 17 00:00:00 2001 From: Jakov Smolić Date: Mon, 26 Aug 2024 16:45:18 +0200 Subject: dev-db/sqlite: Fix build issue in the test suite when USE='-tcl' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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ć --- dev-db/sqlite/sqlite-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev-db') 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() { -- cgit v1.2.3-65-gdbad