diff options
author | davilla <davilla@4pi.com> | 2011-10-17 12:39:13 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-10-17 12:39:42 -0400 |
commit | d14460c9ff4dd8f8718c2f2bdecf3b083ffcc827 (patch) | |
tree | 7bea0bd6c9f2e6f105a6963cb55c4cfd709ab2cb /configure.in | |
parent | ea79501cc4f9849764c4426be859259589781a86 (diff) |
fixed, missing test
Diffstat (limited to 'configure.in')
-rwxr-xr-x | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c1a6b4aa75..632b1ff1dd 100755 --- a/configure.in +++ b/configure.in @@ -1111,7 +1111,7 @@ if test "$host_vendor" = "apple" ; then AC_MSG_NOTICE($libusb_disabled) else # we can use either libudev or libusb but not both. - if test "x$use_libusb" != "xno" && "x$use_libudev" == "xno"; then + if test "x$use_libusb" != "xno" && test "x$use_libudev" == "xno"; then if test "$host_vendor" = "apple" ; then use_libusb="no" AC_MSG_NOTICE($libusb_disabled) |