hermes: use the portable SQLite install target

This commit is contained in:
jenkins 2026-09-13 15:34:13 -05:00
parent e0c3f6591d
commit d12145db01

View File

@ -46,7 +46,7 @@ RUN apt-get update \
&& cd "/tmp/sqlite-autoconf-${SQLITE_AUTOCONF_VERSION}" \
&& ./configure --prefix=/opt/sqlite --disable-static \
&& make -j"$(nproc)" \
&& make install-strip \
&& make install \
&& test -L /opt/sqlite/lib/libsqlite3.so.0 \
&& /opt/sqlite/bin/sqlite3 ':memory:' 'select sqlite_version();' | grep -Fx '3.51.3'