From 9f92fd775fe1df0bf698fe7a6f94835373dc6850 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Mon, 28 Oct 2013 18:49:02 -0400 Subject: config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES Fix Automake warning: AC_OUTPUT should be used without arguments. www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Files Signed-off-by: Gaetan Nadon --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a0792a3..794a602 100644 --- a/configure.ac +++ b/configure.ac @@ -60,4 +60,7 @@ AC_SUBST(inputdir) # Checks for pkg-config packages PKG_CHECK_MODULES(XORG, [xorg-server >= 1.9.99.1] xproto) -AC_OUTPUT([Makefile src/Makefile man/Makefile]) +AC_CONFIG_FILES([Makefile + src/Makefile + man/Makefile]) +AC_OUTPUT -- cgit v1.2.3