diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-04-22 11:05:21 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-04-22 11:05:21 +0000 |
commit | bcd4e5fe95963b2260f3450ab0a0ee60e0c05fe4 (patch) | |
tree | dc9493e08291da8787bfa952f99a1c06e2628ed6 | |
parent | deb375380738ab53954d931cbc2cc80a9367e1a6 (diff) |
autogen.sh: fix bashism "&>"
-rw-r--r-- | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index d28e1d836..e2af44dc1 100644 --- a/autogen.sh +++ b/autogen.sh @@ -3,8 +3,8 @@ set -e if test -n "$AUTOMAKE"; then : # don't override an explicit user request -elif automake-1.8 --version &>/dev/null && \ - aclocal-1.8 --version &>/dev/null; then +elif automake-1.8 --version >/dev/null 2>/dev/null && \ + aclocal-1.8 --version >/dev/null 2>/dev/null; then # If we have automake-1.8, use it. This helps to ensure that our build # system doesn't accidentally grow automake-1.9 dependencies. AUTOMAKE=automake-1.8 |