From: Gaetan Nadon Date: Sat, 26 Oct 2013 01:51:37 +0000 (-0400) Subject: config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES X-Git-Url: https://diplodocus.org/git/xorg-xinput/commitdiff_plain/68e488725a95508378d8a24a9da609a7e80e2ef7?hp=1f812f44a3a22e27de00a447c34657e590231a76 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 --- diff --git a/configure.ac b/configure.ac index 7be549c..7062367 100644 --- a/configure.ac +++ b/configure.ac @@ -53,6 +53,7 @@ PKG_CHECK_MODULES(XI21, [xi >= 1.4.99.1] [inputproto >= 2.0.99.1], PKG_CHECK_MODULES(XI22, [xi >= 1.5.99.1] [inputproto >= 2.1.99.1], AC_DEFINE(HAVE_XI22, 1, [XI2.2 available])); -AC_OUTPUT([Makefile +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) +AC_OUTPUT