From ce95b034c65251999c931403ba1228dbef252cf6 Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Sun, 11 May 2025 19:24:33 +0200 Subject: [PATCH] Fix --with-libusb[=yes] being considered =no --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1e51eb698..cb020bfb0 100644 --- a/configure.ac +++ b/configure.ac @@ -347,7 +347,7 @@ AC_MSG_CHECKING([whether to build USB dependent backends]) AC_ARG_WITH([libusb], [AS_HELP_STRING([--without-libusb], [disable USB dependent backends @<:@default=yes@:>@])], - [cf_with_libusb=no], + [cf_with_libusb=$with_libusb], [cf_with_libusb=yes] )