Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 6b042a6

Browse files
committed
build: Update to SQLite 3.41.1
1 parent 2dfb72d commit 6b042a6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build_dbhub.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ if [ ! -e "${DEST}/lib/libsqlite3.so" ]; then
2323
mkdir -p other/cache
2424
fi
2525
cd other/cache
26-
if [ ! -f sqlite-autoconf-3400100.tar.gz ]; then
26+
if [ ! -f sqlite.tar.gz ]; then
2727
echo "Downloading SQLite source code"
28-
curl -sOL https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz
28+
curl -sL -o sqlite.tar.gz https://sqlite.org/2023/sqlite-autoconf-3410100.tar.gz
2929
fi
30-
if [ ! -f sqlite-autoconf-3400100.tar.gz ]; then
30+
if [ ! -f sqlite.tar.gz ]; then
3131
echo "Downloading the SQLite source code did not work"
3232
exit 1
3333
fi
3434
echo "Compiling local SQLite"
35-
tar xfz sqlite-autoconf-3400100.tar.gz
36-
cd sqlite-autoconf-3400100
35+
tar xfz sqlite.tar.gz
36+
cd sqlite-autoconf-*
3737
./configure --prefix=${DEST} --enable-dynamic-extensions=no
3838
make -j9
3939
make install
4040
cd ..
41-
rm -rf sqlite-autoconf-3400100
41+
rm -rf sqlite-autoconf-*
4242
cd ../..
4343
fi
4444

0 commit comments

Comments
 (0)