From 699dda7ff97453ca6ced0c63b194c61cecb8e304 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Sat, 10 May 2025 22:23:39 +0300 Subject: [PATCH] sqlite3: require matching lib version in shell Shell expects a matching library version to be installed. Specify a matching version using EXTRA_DEPENDS. Signed-off-by: George Sapkin (cherry picked from commit 5b8e0fd4646ff3d7964d5ddbc9cabe98d3d3e6ce) --- libs/sqlite3/Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/libs/sqlite3/Makefile b/libs/sqlite3/Makefile index f10ac6e761..22154bc613 100644 --- a/libs/sqlite3/Makefile +++ b/libs/sqlite3/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sqlite PKG_VERSION:=3490100 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-autoconf-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.sqlite.org/2025/ @@ -74,10 +74,11 @@ define Package/sqlite3-cli SECTION:=utils CATEGORY:=Utilities DEPENDS := \ - +libsqlite3 \ - +SQLITE3_LIBEDIT:libedit \ - +SQLITE3_READLINE:libreadline \ - +SQLITE3_READLINE:libncursesw + +libsqlite3 \ + +SQLITE3_LIBEDIT:libedit \ + +SQLITE3_READLINE:libreadline \ + +SQLITE3_READLINE:libncursesw + EXTRA_DEPENDS:=libsqlite3 (=$(PKG_VERSION)-r$(PKG_RELEASE)) TITLE+= (cli) endef