From: Trond Myklebust Date: Mon, 1 Mar 2010 12:37:49 +0000 (-0500) Subject: Fix a typo in commit 6d5ac3fa (nfsd: Disble NFS 4.1 functionality by X-Git-Tag: nfs-utils-1-2-3-rc1~12 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=9c8c2cd50d3cf0316c2a1bdf6cb9efc7e1a20be9;hp=639b63394c6dd66e06423bfe810366277955c570 Fix a typo in commit 6d5ac3fa (nfsd: Disble NFS 4.1 functionality by default). We did not really intend to make NFSv4.0 support conditional on NFSv4.1 being enabled. Signed-off-by: Steve Dickson --- diff --git a/configure.ac b/configure.ac index b7520d8..518b6d8 100644 --- a/configure.ac +++ b/configure.ac @@ -81,7 +81,7 @@ AC_ARG_ENABLE(nfsv41, if test "$enable_nfsv41" = yes; then AC_DEFINE(NFS41_SUPPORTED, 1, [Define this if you want NFSv41 support compiled in]) else - enable_nfsv4= + enable_nfsv41= fi AC_SUBST(enable_nfsv41) AM_CONDITIONAL(CONFIG_NFSV41, [test "$enable_nfsv41" = "yes"])