rpcbind-0.2.1-rpcuser.patch 927 B

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