From e96f3b736a9859db9677b1b63b4b18379afc9ead Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 17 Jun 2022 09:43:47 -0400 Subject: [PATCH] Call AC_OUTPUT without arguments configure.ac:22: warning: AC_OUTPUT should be used without arguments. configure.ac:22: You should run autoupdate. Signed-off-by: Matt Turner --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 260876c..068eb83 100644 --- a/configure.ac +++ b/configure.ac @@ -19,4 +19,5 @@ AM_PATH_PYTHON([2.5]) xcbincludedir='${datadir}/xcb' AC_SUBST(xcbincludedir) -AC_OUTPUT([Makefile src/Makefile xcbgen/Makefile xcb-proto.pc]) +AC_CONFIG_FILES([Makefile src/Makefile xcbgen/Makefile xcb-proto.pc]) +AC_OUTPUT