diff options
author | Ludovic Rousseau <ludovic.rousseau@gmail.com> | 2012-05-04 16:56:00 +0100 |
---|---|---|
committer | Pete Batard <pete@akeo.ie> | 2012-05-04 23:05:37 +0100 |
commit | d20cd4f3573fe74d0ec5a4e1d60c9d291547ace4 (patch) | |
tree | 872e8fad318ea19df1e76850258c84fb4a45f918 | |
parent | c74fe3ab703a28c6d8c3755213e3736c5d1eb35e (diff) | |
download | libusb-d20cd4f3573fe74d0ec5a4e1d60c9d291547ace4.tar.gz |
Autotools: Use "$@" instead of $* to avoid spaces problems
* "$@" will correctly handle arguments with spaces
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | libusb/version.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -3,4 +3,4 @@ set -e ./bootstrap.sh -./configure --enable-maintainer-mode --enable-examples-build $* +./configure --enable-maintainer-mode --enable-examples-build "$@" diff --git a/libusb/version.h b/libusb/version.h index 0c87ebe..a2ed4a0 100644 --- a/libusb/version.h +++ b/libusb/version.h @@ -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 |