summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2024-08-26 16:45:18 +0200
committerJakov Smolić <jsmolic@gentoo.org>2024-08-26 17:34:13 +0200
commitc0412dfb96cb1a213f174ece9a1629243f14b6e0 (patch)
tree4ca18d46d6d8a6e26c13ec7bbcf5ab9b8acec8a3 /dev-db
parentdev-perl/Regexp-Common: keyword 2017060201.0.0-r1 for ~mips (diff)
downloadgentoo-c0412dfb96cb1a213f174ece9a1629243f14b6e0.tar.gz
gentoo-c0412dfb96cb1a213f174ece9a1629243f14b6e0.tar.bz2
gentoo-c0412dfb96cb1a213f174ece9a1629243f14b6e0.zip
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@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/sqlite/sqlite-9999.ebuild2
1 files changed, 1 insertions, 1 deletions
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() {