diff options
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index e1b1483..538b6f4 100644 --- a/configure.ac +++ b/configure.ac @@ -591,7 +591,7 @@ elif echo $SETTYPE_MODLIST | grep "all" >/dev/null; then done else for mod in $IPSET_ALL_MODULES; do - if echo $SETTYPE_MODLIST | grep $mod >/dev/null; then + if echo $SETTYPE_MODLIST | grep -w "$mod" >/dev/null; then : else AC_MSG_RESULT([ ${mod}]) @@ -599,7 +599,7 @@ else done AC_MSG_RESULT([ Dynamic modules:]) for mod in $IPSET_ALL_MODULES; do - if echo $SETTYPE_MODLIST | grep $mod >/dev/null; then + if echo $SETTYPE_MODLIST | grep -w "$mod" >/dev/null; then AC_MSG_RESULT([ ${mod}]) fi done |