summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2008-10-28 10:15:22 -0400
committerSteve Dickson <steved@redhat.com>2008-10-28 10:15:22 -0400
commitbdc14d4d867a26010466138ecb37336b1f489dcb (patch)
tree8c96e2c6a36094ef189f410feb80cc3e6d285070
parent3d33ad8d37ea2f955a8b06beedade424bc22efbc (diff)
downloadrpcbind-bdc14d4d867a26010466138ecb37336b1f489dcb.tar.gz
rpcbind: Squelch make warnings
Change order of AC_PROG_LIBTOOL macro invocation in configure.in to eliminate autotool warning: Remember to add `AC_PROG_LIBTOOL' to `configure.in'. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 69f4169..d529ea5 100644
--- a/configure.in
+++ b/configure.in
@@ -5,14 +5,14 @@
AC_CONFIG_SRCDIR([src/rpcbind.c])
AC_PROG_CC
AM_CONFIG_HEADER(config.h)
- AC_PROG_LIBTOOL
- ##AC_PROG_RANLIB
AC_HEADER_DIRENT
AC_PREFIX_DEFAULT(/usr)
AC_CONFIG_SRCDIR([src/config.h.in])
AC_CONFIG_HEADERS([src/config.h])
+AC_PROG_LIBTOOL
+
AC_ARG_ENABLE(debug,[ --enable-debug Turns on rpcbind debugging],
[case "${enableval}" in
yes) debug=true ;;