aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorнаб <[email protected]>2022-03-12 00:25:47 +0100
committerTony Hutter <[email protected]>2023-01-19 12:50:25 -0800
commitf8a124b104efc5e23c3646bc6231d6b38a17983d (patch)
tree5fd9e7fd4ad82b647f3179227ea83d13c8ede04a /config
parent689c53f2c5fe951d78bc5094f56c908b6361b2d6 (diff)
egrep -> grep -E
Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: John Kennedy <[email protected]> Reviewed-by: Ryan Moeller <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #13259
Diffstat (limited to 'config')
-rw-r--r--config/kernel-global_page_state.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/config/kernel-global_page_state.m4 b/config/kernel-global_page_state.m4
index badb5e5d2..76f2bba20 100644
--- a/config/kernel-global_page_state.m4
+++ b/config/kernel-global_page_state.m4
@@ -55,7 +55,7 @@ dnl #
AC_DEFUN([ZFS_AC_KERNEL_ENUM_MEMBER], [
AC_MSG_CHECKING([whether enum $2 contains $1])
AS_IF([AC_TRY_COMMAND(
- "${srcdir}/scripts/enum-extract.pl" "$2" "$3" | egrep -qx $1)],[
+ "${srcdir}/scripts/enum-extract.pl" "$2" "$3" | grep -Eqx $1)],[
AC_MSG_RESULT([yes])
AC_DEFINE(m4_join([_], [ZFS_ENUM], m4_toupper($2), $1), 1,
[enum $2 contains $1])