62a1cb1
commit b3b031b07cc5909aaf964f9d4cf46f6097769320
62a1cb1
Author: Steve Dickson <steved@redhat.com>
62a1cb1
Date:   Wed Aug 21 14:40:22 2013 -0400
62a1cb1
62a1cb1
    rpcbind: rpcuser not being set in Makefile.am
62a1cb1
    
62a1cb1
    Commit 8d7a0708 cause a regression where the rpcuser id was not
62a1cb1
    being set, which in turn cause rpcbind to immediately exit.
62a1cb1
    This patch removes the extra ',' that was in the AC_ARG_WITH
62a1cb1
    statement in the configure.ac file.
62a1cb1
    
62a1cb1
    Signed-off-by: Steve Dickson <steved@redhat.com>
62a1cb1
62a1cb1
diff --git a/configure.ac b/configure.ac
62a1cb1
index 2b67720..1cf42d3 100644
62a1cb1
--- a/configure.ac
62a1cb1
+++ b/configure.ac
62a1cb1
@@ -23,7 +23,7 @@ AC_ARG_WITH([statedir],
62a1cb1
 AC_SUBST([statedir], [$with_statedir])
62a1cb1
 
62a1cb1
 AC_ARG_WITH([rpcuser],
62a1cb1
-  AS_HELP_STRING([--with-rpcuser=ARG], [use ARG for RPC @<:@default=root@:>@]),
62a1cb1
+  AS_HELP_STRING([--with-rpcuser=ARG], [use ARG for RPC @<:@default=root@:>@])
62a1cb1
   ,, [with_rpcuser=root])
62a1cb1
 AC_SUBST([rpcuser], [$with_rpcuser])
62a1cb1