diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-10-04 16:16:52 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-10-04 16:16:52 +0200 |
commit | 03e305a2b574d0778c8ff55ece667d9df89bc0e7 (patch) | |
tree | 99fb3217a7c35a8ba111893550091462e81693a1 /autogen.sh | |
parent | 49befa7083200cb7551556b2c8c65a377fb2d566 (diff) |
Don't quote stuff that does not need to be quoted
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 |