summaryrefslogtreecommitdiff
blob: 1373a1010c1fe998ea09866d41b0c302b222b441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/configure.in
+++ b/configure.in
@@ -24,7 +24,7 @@ if test "$LUSB" = "no"; then
   echo "   http://libusb.sourceforge.net"
   echo "   or use the --with-libusb-includes option, if you have it installed"
   echo "   in an unusual place"
-  exit
+  exit 1
 fi
 AC_CHECK_LIB(usb, usb_init, LUSB="yes", LUSB="no")
 if test "$LUSB" = "no"; then
@@ -33,7 +33,7 @@ if test "$LUSB" = "no"; then
   echo "   http://libusb.sourceforge.net"
   echo "   or use the --with-libusb-libraries option, if you have it installed"
   echo "   in an unusual place"
-  exit
+  exit 1
 fi
 
 AC_OUTPUT(Makefile)