Skip to content

Commit

Permalink
Fix error when running with --silent.
Browse files Browse the repository at this point in the history
Otherwise running `autogen.sh` manually, or using `make configure
--silent` will result in errors:

    ./autogen.sh: 16: test: =: unexpected operator
  • Loading branch information
Ferada committed Jul 21, 2016
1 parent 68b7868 commit 9002953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -e
# done.

run () {
test ${V} = 1 && echo $0: running: "$@"
test "${V}" = 1 && echo $0: running: "$@"
"$@"
}

Expand Down

0 comments on commit 9002953

Please sign in to comment.