summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2014-08-18 11:43:06 -0400
committerSteve Dickson <steved@redhat.com>2014-08-18 11:43:06 -0400
commit8ef092a4072a6f94904462ed5e2e848562ea5888 (patch)
tree1b16294f8fd282921230fe3ff75ed46cc12d831c
parentdd1b6d6c0015ebc0b0288e38f7268ea615cea47c (diff)
downloadrpcbind-8ef092a4072a6f94904462ed5e2e848562ea5888.tar.gz
rpcbind: rpcuser not being set in Makefile.am
Commit 8d7a0708 cause a regression where the rpcuser id was not being set, which in turn cause rpcbind to immediately exit. This patch removes the extra ',' that was in the AC_ARG_WITH statement in the configure.ac file. Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 747a8bf..39181f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ AC_ARG_WITH([statedir],
AC_SUBST([statedir], [$with_statedir])
AC_ARG_WITH([rpcuser],
- AS_HELP_STRING([--with-rpcuser=ARG], [use ARG for RPC @<:@default=root@:>@]),
+ AS_HELP_STRING([--with-rpcuser=ARG], [use ARG for RPC @<:@default=root@:>@])
,, [with_rpcuser=root])
AC_SUBST([rpcuser], [$with_rpcuser])