Skip to content

Commit 9b59095

Browse files
committed
Fixed libsqlite3.so output path on SQLite 3.48.0+.
1 parent 975b9d3 commit 9b59095

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

compose.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,11 @@ services:
305305
cd /tmp/sqlite
306306
./configure
307307
make
308-
cp .libs/libsqlite3.so /tmp/
308+
if [ -f libsqlite3.so ]; then
309+
cp libsqlite3.so /tmp/
310+
else
311+
cp .libs/libsqlite3.so /tmp/
312+
fi
309313
rm -rf /tmp/sqlite
310314
fi
311315
EOF

0 commit comments

Comments
 (0)