diff options
author | Michael Tokarev | 2014-05-02 13:36:39 +0200 |
---|---|---|
committer | Michael Tokarev | 2014-05-07 19:00:43 +0200 |
commit | 4fc00556ab68fc91c6d0150152f824d262c0be12 (patch) | |
tree | 700341c018eb02bb9bb531cf47788793d4cf03e5 /configure | |
parent | Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20140507' into staging (diff) | |
download | qemu-4fc00556ab68fc91c6d0150152f824d262c0be12.tar.gz qemu-4fc00556ab68fc91c6d0150152f824d262c0be12.tar.xz qemu-4fc00556ab68fc91c6d0150152f824d262c0be12.zip |
configure: remove bashism
Commit e26110cfc67d48 added a check for shacmd to create a hash
for modules. This check in configure is using bash construct &>
to redirect both stdout and stderr, which does fun things on some
shells. Get rid of it, use standard redirection instead.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2624,7 +2624,7 @@ done if test "$modules" = yes; then shacmd_probe="sha1sum sha1 shasum" for c in $shacmd_probe; do - if which $c &>/dev/null; then + if which $c >/dev/null 2>&1; then shacmd="$c" break fi |