Autotools: Use "set -e" to exit on the first error
authorLudovic Rousseau <ludovic.rousseau@gmail.com>
Fri, 4 May 2012 15:56:00 +0000 (16:56 +0100)
committerPete Batard <pete@akeo.ie>
Fri, 4 May 2012 22:03:46 +0000 (23:03 +0100)
* The script will not continue if something fails (like a command not found)

autogen.sh
bootstrap.sh
libusb/version.h

index a4b87e4..906251a 100755 (executable)
@@ -1,3 +1,6 @@
 #!/bin/sh
+
+set -e
+
 ./bootstrap.sh
 ./configure --enable-maintainer-mode --enable-examples-build $*
index 3e9574a..4f95257 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+set -e
+
 # use libtoolize if available, otherwise look for glibtoolize (darwin)
 if (libtoolize --version) < /dev/null > /dev/null 2>&1; then
   LIBTOOLIZE=libtoolize
index 2418914..0c87ebe 100644 (file)
@@ -9,7 +9,7 @@
 #define LIBUSB_MICRO 10
 #endif
 #ifndef LIBUSB_NANO
-#define LIBUSB_NANO 10490
+#define LIBUSB_NANO 10491
 #endif
 /* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
 #ifndef LIBUSB_RC