From 643aebbbc3efbc686b2826809d477f97e4511181 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 19 Dec 2025 15:51:48 +0100 Subject: [PATCH] configure.ac: formatting cleanups Signed-off-by: Enrico Weigelt, metux IT consult --- configure.ac | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/configure.ac b/configure.ac index d182360..b89091e 100644 --- a/configure.ac +++ b/configure.ac @@ -99,27 +99,19 @@ AM_CONDITIONAL(EVDEV_BACKEND, [test "x$evdev_backend" = xyes]) if test "x$evdev_backend" = xyes; then AC_DEFINE(EVDEV_BACKEND, 1, [Compile Linux evdev backend]) fi -# ----------------------------------------------------------------------------- -AC_CONFIG_FILES([Makefile - src/Makefile - man/Makefile - config/Makefile - ]) +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile config/Makefile]) AC_OUTPUT -# ----------------------------------------------------------------------------- - AS_ECHO() AS_ECHO("Building Linux joystick backend: $linux_backend") AS_ECHO("Building Linux evdev backend: $evdev_backend") AS_ECHO("Building BSD usbhid backend: $bsd_backend") if test "x$linux_backend" != "xyes" -a \ - "x$bsd_backend" != "xyes" -a \ - "x$evdev_backend" != "xyes"; then + "x$bsd_backend" != "xyes" -a \ + "x$evdev_backend" != "xyes"; then AC_MSG_ERROR([No backends were found. Your operating system is not supported by the joystick driver. Contact - xorg@lists.freedesktop.org if you are interested in - porting it.]) + xlibre@freelists.org if you are interested in porting it.]) fi