summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-09-12 15:24:38 -0400
committerGaetan Nadon <memsize@videotron.ca>2010-09-12 15:24:38 -0400
commit6e5eef2c17c0f8e321d97a9f62367570822374b8 (patch)
tree0513060969a834ef0da994f21fa6041e2ba2f89c
parent946cebf428ab1a917aaf3f086717fc317390cfd4 (diff)
config: fix automake waring, use AC_CONFIG_FILES
AC_OUTPUT with parms is deprecated. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac17
1 files changed, 9 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index 5aab873..6383643 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,11 +65,12 @@ AM_CONDITIONAL(BUILD_PDFDOC, test "x$BUILD_PDFDOC" = xyes)
AM_CONDITIONAL(BUILD_PSDOC, test "x$BUILD_PSDOC" = xyes)
AM_CONDITIONAL(BUILD_HTMLDOC, test "x$BUILD_HTMLDOC" = xyes)
-AC_OUTPUT([Makefile
- man/Makefile
- sgml/Makefile
- sgml/fonts/Makefile
- sgml/graphics/Makefile
- sgml/input/Makefile
- sgml/platforms/Makefile
- sgml/security/Makefile])
+AC_CONFIG_FILES([Makefile
+ man/Makefile
+ sgml/Makefile
+ sgml/fonts/Makefile
+ sgml/graphics/Makefile
+ sgml/input/Makefile
+ sgml/platforms/Makefile
+ sgml/security/Makefile])
+AC_OUTPUT