Skip to content

Commit

Permalink
Fixed libsqlite3.so output path on SQLite 3.48.0+.
Browse files Browse the repository at this point in the history
  • Loading branch information
laymonage committed Jan 28, 2025
1 parent 975b9d3 commit 9b59095
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,11 @@ services:
cd /tmp/sqlite
./configure
make
cp .libs/libsqlite3.so /tmp/
if [ -f libsqlite3.so ]; then
cp libsqlite3.so /tmp/
else
cp .libs/libsqlite3.so /tmp/
fi
rm -rf /tmp/sqlite
fi
EOF
Expand Down

0 comments on commit 9b59095

Please sign in to comment.