From d309d0090c79ee31a7735056bc1681953a2c8675 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Tue, 18 Dec 2018 20:07:34 +0100 Subject: [PATCH] sqlite3: use dynamic linking for sqlite cli tool Otherwise it'll carry a static copy of it's own lib. Signed-off-by: Sebastian Kemper --- libs/sqlite3/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/sqlite3/Makefile b/libs/sqlite3/Makefile index 7c3a2aac0d..574bb0744a 100644 --- a/libs/sqlite3/Makefile +++ b/libs/sqlite3/Makefile @@ -79,7 +79,8 @@ TARGET_CFLAGS += $(FPIC) \ CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ - --disable-editline + --disable-editline \ + --disable-static-shell CONFIGURE_VARS += \ config_BUILD_CC="$(HOSTCC)" \ -- 2.30.2