diff options
author | Nick Hainke <vincent@systemli.org> | 2022-09-18 11:18:34 +0200 |
---|---|---|
committer | Nick Hainke <vincent@systemli.org> | 2022-09-19 00:58:46 +0200 |
commit | c87537e1a752cd6f2966b313e1708b55881f87fa (patch) | |
tree | 3df32839000fa0c105b4d78a36611da6ab4c978b /utils/grep | |
parent | 487855130469aae799fe65e2fca899fd0d200cca (diff) |
grep: use libpcre2
We should use libpcre2 instead of libpcre in the new grep version.
Signed-off-by: Nick Hainke <vincent@systemli.org>
Diffstat (limited to 'utils/grep')
-rw-r--r-- | utils/grep/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/grep/Makefile b/utils/grep/Makefile index 6096adaf3..1221d7bf8 100644 --- a/utils/grep/Makefile +++ b/utils/grep/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=grep PKG_VERSION:=3.8 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/grep @@ -31,7 +31,7 @@ define Package/grep SECTION:=utils CATEGORY:=Utilities TITLE:=grep search utility - full version - DEPENDS:=+libpcre + DEPENDS:=+libpcre2 URL:=https://www.gnu.org/software/grep/ ALTERNATIVES:=\ 300:/bin/egrep:/usr/libexec/egrep-gnu \ |