summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDan Fandrich <danf@mageia.org>2024-01-05 01:27:27 -0800
committerDan Fandrich <danf@mageia.org>2024-01-05 01:27:27 -0800
commita87aa0ddc02605887ecd181a42813d9a7293a1e2 (patch)
tree123f1361579c4965b8e02e2c802622a315a7b61a /tools
parent0fa88b29b084ef372bd580cd94132abfd820c035 (diff)
downloaddrakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar.gz
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar.bz2
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.tar.xz
drakx-a87aa0ddc02605887ecd181a42813d9a7293a1e2.zip
Eliminate use of egrep and fgrep and the warnings they now give
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile2
1 files changed, 1 insertions, 1 deletions
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