From 8dcaa9155cd9aa28692a45ea7d2b163c1477eea2 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 12 Jan 2026 11:08:29 +0100 Subject: [PATCH] configure.ac: use AC_CONFIG_FILES() macro passing output file names to AC_OUTPUT() is deprecated. Signed-off-by: Enrico Weigelt, metux IT consult --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index fc713e9..62a17f8 100644 --- a/configure.ac +++ b/configure.ac @@ -93,8 +93,6 @@ if test "x$evdev_backend" = xyes; then AC_DEFINE(EVDEV_BACKEND, 1, [Compile Linux evdev backend]) fi -AC_OUTPUT([Makefile src/Makefile man/Makefile man/joystick.man config/Makefile]) - AS_ECHO() AS_ECHO("Building Linux joystick backend: $linux_backend") AS_ECHO("Building Linux evdev backend: $evdev_backend") @@ -107,3 +105,6 @@ if test "x$linux_backend" != "xyes" -a \ supported by the joystick driver. Contact xlibre@freelists.org if you are interested in porting it.]) fi + +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile man/joystick.man config/Makefile]) +AC_OUTPUT