The script will not continue if something fails (like a command not found) --- autogen.sh | 3 +++ bootstrap.sh | 2 ++ libusb/version.h | 2 +- 3 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/autogen.sh b/autogen.sh index a4b87e4..906251a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,3 +1,6 @@ #!/bin/sh + +set -e + ./bootstrap.sh ./configure --enable-maintainer-mode --enable-examples-build $* diff --git a/bootstrap.sh b/bootstrap.sh index 3e9574a..4f95257 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -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 diff --git a/libusb/version.h b/libusb/version.h index ef81eba..c0df768 100644 --- a/libusb/version.h +++ b/libusb/version.h @@ -9,7 +9,7 @@ #define LIBUSB_MICRO 10 #endif #ifndef LIBUSB_NANO -#define LIBUSB_NANO 10488 +#define LIBUSB_NANO 10489 #endif /* LIBUSB_RC is the release candidate suffix. Should normally be empty. */ #ifndef LIBUSB_RC -- 1.7.1 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ libusbx-devel mailing list libusbx-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/libusbx-devel