summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2023-08-12 18:46:52 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2023-08-12 18:46:52 +0200
commit51cd6841c97546b6a6a9109166247eb10f122063 (patch)
treefacc3ac54110aa00dbb4d269a071f1463f5b2c7b
parentc6e9cd7368770c2980dd4cf2743d8d3a3d2c97b9 (diff)
grep: override busybox grep in /bin
-rw-r--r--package/grep/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/grep/Makefile b/package/grep/Makefile
index 56f668e6c..12acd79d4 100644
--- a/package/grep/Makefile
+++ b/package/grep/Makefile
@@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= grep
PKG_VERSION:= 3.0
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_HASH:= e2c81db5056e3e8c5995f0bb5d0d0e1cad1f6f45c3b2fc77b6e81435aed48ab5
PKG_DESCR:= global search for a regex
PKG_SECTION:= base/tools
@@ -25,7 +25,8 @@ $(eval $(call PKG_template,GREP,grep,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS
grep-install:
$(INSTALL_DIR) $(IDIR_GREP)/usr/bin
- $(INSTALL_BIN) $(WRKINST)/usr/bin/{e,f,}grep $(IDIR_GREP)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/{e,f,}grep \
+ $(IDIR_GREP)/bin
include ${ADK_TOPDIR}/mk/host-bottom.mk
include ${ADK_TOPDIR}/mk/pkg-bottom.mk