aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorLudovic Rousseau <ludovic.rousseau@gmail.com>2012-05-04 16:56:00 +0100
committerPete Batard <pete@akeo.ie>2012-05-04 23:05:37 +0100
commitd20cd4f3573fe74d0ec5a4e1d60c9d291547ace4 (patch)
tree872e8fad318ea19df1e76850258c84fb4a45f918 /autogen.sh
parentc74fe3ab703a28c6d8c3755213e3736c5d1eb35e (diff)
downloadandroid_external_libusbx-d20cd4f3573fe74d0ec5a4e1d60c9d291547ace4.tar.gz
android_external_libusbx-d20cd4f3573fe74d0ec5a4e1d60c9d291547ace4.tar.bz2
android_external_libusbx-d20cd4f3573fe74d0ec5a4e1d60c9d291547ace4.zip
Autotools: Use "$@" instead of $* to avoid spaces problems
* "$@" will correctly handle arguments with spaces
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 906251a..1a4c75f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,4 +3,4 @@
set -e
./bootstrap.sh
-./configure --enable-maintainer-mode --enable-examples-build $*
+./configure --enable-maintainer-mode --enable-examples-build "$@"