From: Neil Brown Date: Tue, 27 Feb 2007 04:55:40 +0000 (+1100) Subject: Fix silly bug with tcp-wrappers check X-Git-Tag: nfs-utils-1-0-12 X-Git-Url: http://git.neil.brown.name/?a=commitdiff_plain;h=refs%2Fheads%2Fbranch-1-0;p=nfs-utils.git Fix silly bug with tcp-wrappers check A stray '$'. Signed-off-by: Neil Brown --- diff --git a/aclocal/tcp-wrappers.m4 b/aclocal/tcp-wrappers.m4 index 0fdf611..35ac8e0 100644 --- a/aclocal/tcp-wrappers.m4 +++ b/aclocal/tcp-wrappers.m4 @@ -4,7 +4,7 @@ AC_DEFUN([AC_TCP_WRAPPERS],[ AC_ARG_WITH(tcp-wrappers, [ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support (optionally in PATH)], - with_tcpw=$withval, $with_tcpw=yes) + with_tcpw=$withval, with_tcpw=yes) if test "x$with_tcpw" != "xno" ; then saved_LIBS="$LIBS" saved_LDFLAGS="$LDFLAGS"