diff options
author | Mark Wielaard <mark@klomp.org> | 2022-10-27 18:34:54 +0200 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2022-10-27 18:34:54 +0200 |
commit | 73d016bde224af6d1be7c86fb2ea67af22f7582f (patch) | |
tree | 1f394025092d8b7f2cbe4278077962fb637181a2 /config/eu.am | |
parent | 6f1ec0ef46e067ac5169880317f37223e96c9732 (diff) | |
download | elfutils-73d016bde224af6d1be7c86fb2ea67af22f7582f.tar.gz |
Use grep -E instead of egrep, use grep -F instead of fgrep.
GNU grep 3.8 gives a deprecation warning when using egrep or fgrep.
Just use grep -E and grep -F.
Signed-off-by: Mark Wielaard <mark@klomp.org>
Diffstat (limited to 'config/eu.am')
-rw-r--r-- | config/eu.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/eu.am b/config/eu.am index 58cd3c4f..c3cefe7e 100644 --- a/config/eu.am +++ b/config/eu.am @@ -135,7 +135,7 @@ textrel_found = $(textrel_msg); exit 1 else textrel_found = $(textrel_msg) endif -textrel_check = if $(READELF) -d $@ | fgrep -q TEXTREL; then $(textrel_found); fi +textrel_check = if $(READELF) -d $@ | grep -F -q TEXTREL; then $(textrel_found); fi print-%: @echo $*=$($*) |