From 8bdf7f1d442c16614146a2bd5c9e91a3176a8c3c Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 12 Jan 2026 11:13:45 +0100 Subject: [PATCH] configure.ac: use AC_CONFIG_FILES() macro passing output file names directly to AC_OUTPUT() is deprecated. Signed-off-by: Enrico Weigelt, metux IT consult --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 711ae50..7d1695d 100644 --- a/configure.ac +++ b/configure.ac @@ -61,4 +61,5 @@ AC_SUBST(xlibre_input_drivers_dir) xorgconfdir=`$PKG_CONFIG --variable=sysconfigdir xorg-server` AC_SUBST(xorgconfdir) -AC_OUTPUT([Makefile src/Makefile man/Makefile man/evdev.man]) +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile man/evdev.man]) +AC_OUTPUT