From 572a717274e12505b2bd6659ef48fe33d3a3ca6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Buchetet?= Date: Mon, 5 Feb 2018 22:35:20 +0100 Subject: [PATCH] sqlite3-cli: use shared library to link sqlite3 binary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sqlite3 binary was linked against the static library of libsqlite3. It now uses the .so library of the libsqlite3 package. This dropped size of the sqlite3 binary from 652k to 91k. Signed-off-by: Gaƫtan Buchetet --- libs/sqlite3/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/sqlite3/Makefile b/libs/sqlite3/Makefile index 1f64e5e74..78228eb03 100644 --- a/libs/sqlite3/Makefile +++ b/libs/sqlite3/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sqlite PKG_VERSION:=3210000 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-autoconf-$(PKG_VERSION).tar.gz PKG_HASH:=d7dd516775005ad87a57f428b6f86afd206cb341722927f104d3f0cf65fbbbe3 @@ -91,7 +91,8 @@ endif CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ - --disable-editline + --disable-editline \ + --disable-static-shell CONFIGURE_VARS += \ config_BUILD_CC="$(HOSTCC)" \