diff options
author | Dan Fandrich <danf@mageia.org> | 2024-01-05 01:27:27 -0800 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-01-05 01:27:27 -0800 |
commit | a87aa0ddc02605887ecd181a42813d9a7293a1e2 (patch) | |
tree | 123f1361579c4965b8e02e2c802622a315a7b61a /tools/Makefile | |
parent | 0fa88b29b084ef372bd580cd94132abfd820c035 (diff) | |
download | drakx-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/Makefile')
-rw-r--r-- | tools/Makefile | 2 |
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 |