From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 284DE1581FB for ; Mon, 26 Aug 2024 15:35:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74AA7E2A5D; Mon, 26 Aug 2024 15:35:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 539A2E2A5D for ; Mon, 26 Aug 2024 15:35:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5CA9833BE32 for ; Mon, 26 Aug 2024 15:35:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C6F51889 for ; Mon, 26 Aug 2024 15:35:29 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1724686453.c0412dfb96cb1a213f174ece9a1629243f14b6e0.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/sqlite/sqlite-9999.ebuild X-VCS-Directories: dev-db/sqlite/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: c0412dfb96cb1a213f174ece9a1629243f14b6e0 X-VCS-Branch: master Date: Mon, 26 Aug 2024 15:35:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3ce6ede7-ccce-4d16-b347-5a345df17d66 X-Archives-Hash: 23d266b3b7b2a9dbbdfda6a488ed4af4 commit: c0412dfb96cb1a213f174ece9a1629243f14b6e0 Author: Jakov Smolić gentoo org> AuthorDate: Mon Aug 26 14:45:18 2024 +0000 Commit: Jakov Smolić gentoo 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ć 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() {