From 39d112fd98453bc3d92e1864ef2cf537c9b22ca2 Mon Sep 17 00:00:00 2001 From: ericm Date: Fri, 6 Oct 2006 20:40:43 +0000 Subject: [PATCH] branch: b_new_cmd minor fix for gss configure --- lustre/autoconf/lustre-core.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/autoconf/lustre-core.m4 b/lustre/autoconf/lustre-core.m4 index 527dd42..2de492f 100644 --- a/lustre/autoconf/lustre-core.m4 +++ b/lustre/autoconf/lustre-core.m4 @@ -655,7 +655,7 @@ AC_MSG_RESULT([$enable_gss]) if test x$enable_gss == xyes; then AC_MSG_CHECKING([whether CONFIG_SUNRPC is in kernel config file]) - if test -f $LINUX_CONFIG && grep -q CONFIG_SUNRPC=y $LINUX_CONFIG; then + if test -f $LINUX_CONFIG && egrep -q "CONFIG_SUNRPC=[y|m]" $LINUX_CONFIG; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) -- 1.8.3.1