aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Mazo <mazo@telum.ru>2014-02-24 14:56:45 +0400
committerStephen Hemminger <stephen@networkplumber.org>2014-02-28 10:15:58 -0800
commit2ccf7b1b596f242f76c0486c675e9b60913102dd (patch)
treef2f2f205234d2d268f01fcecc37a59fb82fc6df2
parentc50a53712f8e8daf0d9747572260b7f977e47cce (diff)
downloadbridge-utils-2ccf7b1b596f242f76c0486c675e9b60913102dd.tar.gz
bridge-utils: AC_OUTPUT should be used without arguments
This patch is a result of autoupdate-2.69 run and fixes the following warning: configure.ac:27: warning: AC_OUTPUT should be used without arguments. configure.ac:27: You should run autoupdate. Signed-off-by: Andrey Mazo <mazo@telum.ru>
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 5e3f89b..096f017 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(bridge-utils, 1.5)
+AC_INIT([bridge-utils],[1.5])
AC_CONFIG_HEADERS(libbridge/config.h)
AC_ARG_WITH( linux-headers, [ --with-linux-headers Location of the linux headers to use],
@@ -24,4 +24,5 @@ AC_CHECK_FUNCS(if_nametoindex if_indextoname)
AC_SUBST(KERNEL_HEADERS)
-AC_OUTPUT(doc/Makefile libbridge/Makefile brctl/Makefile Makefile bridge-utils.spec)
+AC_CONFIG_FILES([doc/Makefile libbridge/Makefile brctl/Makefile Makefile bridge-utils.spec])
+AC_OUTPUT