From 5c4333de5ff41f1f8ccfb14e06b37fe7250d51aa Mon Sep 17 00:00:00 2001 From: Jakub Tymejczyk Date: Sat, 17 Feb 2018 16:43:38 +0100 Subject: [PATCH] zsh: add required dependency(issue #5514) As indicated in https://github.com/openwrt/packages/issues/5514 zsh is compiled with --enable-cap option but libcap is not listed in dependencies Signed-off-by: Jakub Tymejczyk --- utils/zsh/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/zsh/Makefile b/utils/zsh/Makefile index 95cb8a7d8b..4c6c961404 100644 --- a/utils/zsh/Makefile +++ b/utils/zsh/Makefile @@ -26,7 +26,7 @@ define Package/zsh CATEGORY:=Utilities SUBMENU:=Shells TITLE:=The Z shell - DEPENDS:=+libncurses +libncursesw +libpcre +librt + DEPENDS:=+libcap +libncurses +libncursesw +libpcre +librt URL:=http://www.zsh.org/ endef