Only run ./configure with autogen.sh if extra parameters are passed to it.
diff --git a/autogen.sh b/autogen.sh
index 7027b2a..8b48add 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,7 +5,7 @@ bs_dir="$(dirname $(readlink -f $0))"
touch "${bs_dir}"/ltmain.sh
autoreconf -fi "${bs_dir}"
-if test -z "$NOCONFIGURE" ; then
+if test -n "$1" && test -z "$NOCONFIGURE" ; then
echo 'Configuring...'
"$bs_dir"/configure "$@"
fi