summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2013-10-28 18:49:02 -0400
committerGaetan Nadon <memsize@videotron.ca>2013-10-28 18:49:02 -0400
commit9f92fd775fe1df0bf698fe7a6f94835373dc6850 (patch)
tree609fac959724414ed97c95316592e1d736b92947
parent1ff7a4ae9c19ffd0713f92a108af284690862d36 (diff)
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 <memsize@videotron.ca>
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
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