diff options
author | Felix Singer <felix.singer@secunet.com> | 2023-04-01 14:42:54 +0200 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2023-04-06 19:54:44 +0000 |
commit | 74b4bd0e92a77635bbb584d8b7913deb9a134da7 (patch) | |
tree | fb591e761ce8d63a0797f346592bb3604f49ffa5 /payloads | |
parent | 1d13fba3c32ba7974b2c73428ff4b096e814dcd2 (diff) |
tree: Replace `egrep` with `grep -E`
For compatibility reasons, egrep is just a wrapper around grep today.
Thus, replace it with `grep -E`.
Change-Id: Ief08a22e4cd7211a3fee278492c95d37f9e058fa
Signed-off-by: Felix Singer <felix.singer@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74171
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/curses/PDCurses/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/libpayload/curses/PDCurses/aclocal.m4 b/payloads/libpayload/curses/PDCurses/aclocal.m4 index ad7c3f3a44..c5ccea112a 100644 --- a/payloads/libpayload/curses/PDCurses/aclocal.m4 +++ b/payloads/libpayload/curses/PDCurses/aclocal.m4 @@ -463,7 +463,7 @@ EOF DYN_COMP="" else slash="\\" - mh_dyncomp="`egrep -c $slash$a conftest.tmp`" + mh_dyncomp="`grep -E -c $slash$a conftest.tmp`" if test "$mh_dyncomp" = "0"; then DYN_COMP="$a -DDYNAMIC" AC_MSG_RESULT($a) |