From 2a24daca5e57f3d26741af8694970f02a7a07706 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Fri, 4 May 2012 16:56:00 +0100 Subject: Autotools: Do not use source to call an another script * Script is valid for bash but not any /bin/sh * Thanks to Xiaofan Chen for the bug report http://sourceforge.net/mailarchive/message.php?msg_id=29217871 --- autogen.sh | 2 +- libusb/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 5872540..a4b87e4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,3 +1,3 @@ #!/bin/sh -source ./bootstrap.sh +./bootstrap.sh ./configure --enable-maintainer-mode --enable-examples-build $* diff --git a/libusb/version.h b/libusb/version.h index c0df768..2418914 100644 --- a/libusb/version.h +++ b/libusb/version.h @@ -9,7 +9,7 @@ #define LIBUSB_MICRO 10 #endif #ifndef LIBUSB_NANO -#define LIBUSB_NANO 10489 +#define LIBUSB_NANO 10490 #endif /* LIBUSB_RC is the release candidate suffix. Should normally be empty. */ #ifndef LIBUSB_RC -- cgit v1.2.1