From: Michael Tokarev Date: Fri, 2 May 2014 11:36:39 +0000 (+0400) Subject: configure: remove bashism X-Git-Tag: qemu-xen-4.5.0-rc1^2~78 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=274c96e4e12a1829def558534c4eb1a77c4865eb;p=qemu-upstream-4.6-testing.git 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 Reviewed-by: Fam Zheng (cherry picked from commit 4fc00556ab68fc91c6d0150152f824d262c0be12) Signed-off-by: Michael Roth --- diff --git a/configure b/configure index 69b9f5684..ffce604bc 100755 --- a/configure +++ b/configure @@ -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