summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-06-18 09:38:25 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-06-18 09:38:25 -0700
commit279d6a683ceed4e07a00acce2d122f48a6428dac (patch)
tree2a273a9131361d713bfe79e0c9a80f5a37e2e1db
parenteebb170e09a82982027ed50acf6f48e82f90a29e (diff)
Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters
configure.ac:130: warning: AC_OUTPUT should be used without arguments. configure.ac:130: You should run autoupdate. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0aa025f..e8b8b4e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -127,4 +127,5 @@ AM_CONDITIONAL([BUILD_MKHTMLINDEX], [test "x$BUILD_MKHTMLINDEX" = xyes])
# Checks for pkg-config packages
PKG_CHECK_MODULES(XPROTO, xproto)
-AC_OUTPUT([Makefile])
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT