Autotools: Use "$@" instead of $* to avoid spaces problems
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:05:37 +0000 (23:05 +0100)
* "$@" will correctly handle arguments with spaces

autogen.sh
libusb/version.h

index 906251a..1a4c75f 100755 (executable)
@@ -3,4 +3,4 @@
 set -e
 
 ./bootstrap.sh
-./configure --enable-maintainer-mode --enable-examples-build $*
+./configure --enable-maintainer-mode --enable-examples-build "$@"
index 0c87ebe..a2ed4a0 100644 (file)
@@ -9,7 +9,7 @@
 #define LIBUSB_MICRO 10
 #endif
 #ifndef LIBUSB_NANO
-#define LIBUSB_NANO 10491
+#define LIBUSB_NANO 10492
 #endif
 /* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
 #ifndef LIBUSB_RC