From 6439bb00cba2b71f4c31d0f892c693781b0d687c Mon Sep 17 00:00:00 2001 From: Roy Hashimoto Date: Thu, 21 Aug 2025 19:34:35 -0700 Subject: [PATCH 1/2] Use non-CAPTCHA SQLite download URL. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 409e366a..e9fff46a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # dependencies SQLITE_VERSION = version-3.50.1 -SQLITE_TARBALL_URL = https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=${SQLITE_VERSION} +SQLITE_TARBALL_URL = https://www.sqlite.org/src/tarball/${SQLITE_VERSION}/sqlite.tar.gz EXTENSION_FUNCTIONS = extension-functions.c EXTENSION_FUNCTIONS_URL = https://www.sqlite.org/contrib/download/extension-functions.c?get=25 From 6413bf927dd3bfc2a3960e6674d9e929bcfb55ab Mon Sep 17 00:00:00 2001 From: Roy Hashimoto Date: Thu, 21 Aug 2025 22:05:21 -0700 Subject: [PATCH 2/2] Use consistent Makefile variable bracing. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e9fff46a..053b3538 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # dependencies SQLITE_VERSION = version-3.50.1 -SQLITE_TARBALL_URL = https://www.sqlite.org/src/tarball/${SQLITE_VERSION}/sqlite.tar.gz +SQLITE_TARBALL_URL = https://www.sqlite.org/src/tarball/$(SQLITE_VERSION)/sqlite.tar.gz EXTENSION_FUNCTIONS = extension-functions.c EXTENSION_FUNCTIONS_URL = https://www.sqlite.org/contrib/download/extension-functions.c?get=25