Browse Source

Bugfix: --disable-other-drivers should not force libusb to be unused

Luke Dashjr 11 years ago
parent
commit
ca94f36401
1 changed files with 1 additions and 1 deletions
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -586,7 +586,7 @@ libusb_include_path=""
 AC_ARG_WITH([libusb],
 AC_ARG_WITH([libusb],
 	[AC_HELP_STRING([--without-libusb],[Compile using libusb (default enabled)])],
 	[AC_HELP_STRING([--without-libusb],[Compile using libusb (default enabled)])],
 	[want_libusb=$withval],
 	[want_libusb=$withval],
-	[want_libusb=$ddauto]
+	[want_libusb=auto]
 	)
 	)
 if test "x$want_libusb" != "xno"; then
 if test "x$want_libusb" != "xno"; then
 PKG_CHECK_MODULES([LIBUSB], [libusb-1.0],[
 PKG_CHECK_MODULES([LIBUSB], [libusb-1.0],[