Autotools: Do not use source to call an another script
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:02:40 +0000 (23:02 +0100)
* 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
libusb/version.h

index 5872540..a4b87e4 100755 (executable)
@@ -1,3 +1,3 @@
 #!/bin/sh
-source ./bootstrap.sh
+./bootstrap.sh
 ./configure --enable-maintainer-mode --enable-examples-build $*
index c0df768..2418914 100644 (file)
@@ -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