summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-06-18 09:44:26 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-06-18 09:44:26 -0700
commita8a14a9dae71ba66148cc405fab3c1439a5dbc1a (patch)
treee203ee5f0398f07657186c37ccfde4c94970c4fc
parent223844cf48ed5d889ba224a94503a7e412cdfbb4 (diff)
Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters
configure.ac:47: warning: AC_OUTPUT should be used without arguments. configure.ac:47: You should run autoupdate. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 651b45c..1679a28 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,3 @@
-
dnl Copyright 2005 Red Hat, Inc.
dnl
dnl Permission to use, copy, modify, distribute, and sell this software and its
@@ -44,4 +43,5 @@ AC_SYS_LARGEFILE
# Checks for pkg-config packages
PKG_CHECK_MODULES(XPROTO, xproto >= 7.0.17)
-AC_OUTPUT([Makefile])
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT