summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-06-17 12:21:01 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-06-17 12:21:01 -0700
commit123946c0ed54fa8b74d9a6200b71e2da5eb84ef1 (patch)
tree18e084f37b3124d03a964e8fd6eac2cd592993f6
parent2b250d86fb74910f0022686fc4161945aba2be34 (diff)
Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters
configure.ac:36: warning: AC_OUTPUT should be used without arguments. configure.ac:36: 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 76d44f3..11cf3f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,8 @@ AC_ARG_WITH(config-dir,
[XCONFDIR="$DEFAULT_XCONFDIR"])
AC_SUBST(XCONFDIR)
-AC_OUTPUT([
+AC_CONFIG_FILES([
Makefile
site.def
])
+AC_OUTPUT