Skip to content

Commit

Permalink
autogen.sh: Fix parameter quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarton committed Aug 26, 2015
1 parent a1ce3fc commit c56138c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autogen.sh
Expand Up @@ -109,8 +109,8 @@ Notfound()

Run()
{
[ "$VERBOSE" = "1" ] && echo " - running \"$@\" ..."
$@
[ "$VERBOSE" = "1" ] && echo " - running \"$*\" ..."
"$@"
}

# Reset locale settings to suppress warning messages of Perl
Expand Down Expand Up @@ -157,7 +157,7 @@ AUTOMAKE_VERSION=`echo $AUTOMAKE | cut -d'-' -f2-`
&& export AUTOMAKE_VERSION || unset AUTOMAKE_VERSION
[ "$VERBOSE" = "1" ] && echo " - AUTOMAKE_VERSION=$AUTOMAKE_VERSION"

[ $# -gt 0 ] && CONFIGURE_ARGS=" $@" || CONFIGURE_ARGS=""
[ $# -gt 0 ] && CONFIGURE_ARGS=" $*" || CONFIGURE_ARGS=""
[ -z "$GO" -a -n "$CONFIGURE_ARGS" ] && GO=1

# Verify that all tools have been found
Expand Down

0 comments on commit c56138c

Please sign in to comment.