summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2007-02-27 15:55:40 +1100
committerNeil Brown <neilb@suse.de>2007-02-27 15:55:40 +1100
commit0b7f54e8954374ebb991ac851accde2c246ae9f8 (patch)
treec129fbef4f54099384e9f64a57236f67087608e9 /aclocal
parent4b9f9e2e5ea09dfbf2da26e9de0902a42e04c0d3 (diff)
downloadnfs-utils-0b7f54e8954374ebb991ac851accde2c246ae9f8.tar.gz
nfs-utils-0b7f54e8954374ebb991ac851accde2c246ae9f8.tar.xz
nfs-utils-0b7f54e8954374ebb991ac851accde2c246ae9f8.zip
Fix silly bug with tcp-wrappers check
A stray '$'. Signed-off-by: Neil Brown <neilb@suse.de>
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/tcp-wrappers.m42
1 files changed, 1 insertions, 1 deletions
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"