From 497bb4ff0c79d2bb22baaf0ce8157a014763f215 Mon Sep 17 00:00:00 2001 From: Daniel Engberg Date: Sun, 21 Oct 2018 10:53:28 +0200 Subject: [PATCH] fish: Add (lib)pcre2 dependency Use the shared version of libpcre2 instead of bundled. Fixes the following error: Package fish is missing dependencies for the following libraries: libpcre2-32.so.0 Signed-off-by: Daniel Engberg --- utils/fish/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/fish/Makefile b/utils/fish/Makefile index 4c4e10898..672d71231 100644 --- a/utils/fish/Makefile +++ b/utils/fish/Makefile @@ -25,7 +25,7 @@ define Package/fish CATEGORY:=Utilities SUBMENU:=Shells TITLE:=A smart and user-friendly command line shell - DEPENDS:=+libncurses +libstdcpp +librt + DEPENDS:=+libncurses +libstdcpp +librt +libpcre2-32 URL:=https://fishshell.com endef