summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2012-01-05 15:51:42 -0500
committerSteve Dickson <steved@redhat.com>2012-01-05 16:27:05 -0500
commitdacc7248b33a360d9e57b78726a0530d5b2b3814 (patch)
tree3ad0a69b7c48bc209f7b58ab6c57cfa49f0cc3ff
parent17e77da99f103191da3e1e7d0b43838a04c5ac3b (diff)
downloadnfs-utils-dacc7248b33a360d9e57b78726a0530d5b2b3814.tar.gz
configure.ac: Clean up help string for --with-statdpath
Neither m4 nor the vim colorizer like unbalanced single quotes. Similar change as commit 34ee5730. Also, the default value of the command line option is conventionally listed in the right-hand side argument of AC_HELP_STRING. Introduced by commit 5c3e2665: "statd: Decouple statd's state directory from the NFS state directory," (September 20, 2011). Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--configure.ac5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f101b86..d3656bf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,9 +24,8 @@ AC_ARG_WITH(statedir,
statedir=/var/lib/nfs)
AC_SUBST(statedir)
AC_ARG_WITH(statdpath,
- [AC_HELP_STRING([--with-statdpath=/foo @<:@default=/var/lib/nfs@:>@],
- [define statd's state dir as /foo instead of the NFS statedir]
- )],
+ [AC_HELP_STRING([--with-statdpath=/foo],
+ [define the statd state dir as /foo instead of the NFS statedir @<:@default=/var/lib/nfs@:>@])],
statdpath=$withval,
statdpath=$statedir
)