summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2014-05-02 15:36:39 +0400
committerMichael Roth <mdroth@linux.vnet.ibm.com>2014-07-20 22:20:36 -0500
commit274c96e4e12a1829def558534c4eb1a77c4865eb (patch)
tree43a5b5bab89bda193847005ef2830e9dd7d1ae5d
parent32c113c182baf66fa01a4f863fac3689ac838b6c (diff)
downloadqemu-274c96e4e12a1829def558534c4eb1a77c4865eb.tar.gz
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> (cherry picked from commit 4fc00556ab68fc91c6d0150152f824d262c0be12) Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 69b9f56847..ffce604bcd 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