diff mbox

[3/4] bridge-utils: AC_OUTPUT should be used without arguments

Message ID 1393239406-8504-4-git-send-email-mazo@telum.ru
State Accepted, archived
Delegated to: stephen hemminger
Headers show

Commit Message

Andrey Mazo Feb. 24, 2014, 10:56 a.m. UTC
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>
---
 configure.ac | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox

Patch

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