diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh index 2725f167972a..8cb58b198fda 100755 --- a/autogen.sh +++ b/autogen.sh @@ -14,8 +14,6 @@ requote_args () sed -e 's/.*configure //' -e 's/=\(\([^"'"'"'-]\|-[^-]\| \)*\)\( \|$\)/="\1" /g' } -new_args=`echo $@ | requote_args` - old_args="" if test $# -eq 0 && test -f config.log; then old_args=`grep '\$ ./configure' config.log | requote_args` @@ -29,7 +27,7 @@ aclocal $ACLOCAL_FLAGS || exit 1; #intltoolize --copy --force --automake autoconf || exit 1; if test "x$NOCONFIGURE" = "x"; then - eval `echo ./configure $new_args $old_args` + eval `echo ./configure $old_args "$@"` else echo "Skipping configure process." fi |