From a87aa0ddc02605887ecd181a42813d9a7293a1e2 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 5 Jan 2024 01:27:27 -0800 Subject: Eliminate use of egrep and fgrep and the warnings they now give --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/Makefile b/tools/Makefile index bac17c3e7..40194245d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -2,7 +2,7 @@ DIRS = serial_probe LDFLAGS = $(shell pkg-config libtirpc --libs) CFLAGS = -Wall $(shell pkg-config libtirpc --cflags) -ARCH := $(shell arch | egrep "x86_64") +ARCH := $(shell arch | grep -E "x86_64") ifneq ("x$(ARCH)", "x") LIB_NAME = lib64 else -- cgit v1.2.1