diff options
author | Jakub Tymejczyk <jakub@tymejczyk.pl> | 2018-02-17 16:43:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-17 16:43:38 +0100 |
commit | 5c4333de5ff41f1f8ccfb14e06b37fe7250d51aa (patch) | |
tree | b58c05cd27774a61e0ed7730c13b93ca2ac6b03f /utils/zsh | |
parent | a03851766f6af7ce137974e49343154bf1e973ed (diff) |
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 <jakub@tymejczyk.pl>
Diffstat (limited to 'utils/zsh')
-rw-r--r-- | utils/zsh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/zsh/Makefile b/utils/zsh/Makefile index 95cb8a7d8..4c6c96140 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 |