diff options
Diffstat (limited to 'app-misc/logitech-applet/files/logitech-applet-0.4_pre1-configure-error-handling.patch')
-rw-r--r-- | app-misc/logitech-applet/files/logitech-applet-0.4_pre1-configure-error-handling.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app-misc/logitech-applet/files/logitech-applet-0.4_pre1-configure-error-handling.patch b/app-misc/logitech-applet/files/logitech-applet-0.4_pre1-configure-error-handling.patch new file mode 100644 index 000000000000..1373a1010c1f --- /dev/null +++ b/app-misc/logitech-applet/files/logitech-applet-0.4_pre1-configure-error-handling.patch @@ -0,0 +1,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) |