From d55f5ebe44ece4532ea28fe2c30a60bac8a7e81f Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 15 Jun 2017 11:37:26 -0600 Subject: crossgcc/buildgcc: update file location code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change from 'which' to 'command -v'. 'which' is not a posix command. Change-Id: Icdf18e7e496447157554b8e61b1528f03456536d Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/20230 Reviewed-by: Philippe Mathieu-Daudé Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber --- util/crossgcc/buildgcc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'util/crossgcc/buildgcc') diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index b388afbebe..4d1f25a6a0 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -152,7 +152,7 @@ searchtool() search="$2" fi for i in "$1" "g$1" "gnu$1"; do - if [ -x "$(which $i 2>/dev/null)" ]; then + if [ -x "$(command -v $i 2>/dev/null)" ]; then if [ "$(cat /dev/null | $i --version 2>&1 | grep -c "$search")" \ -gt 0 ]; then echo $i @@ -164,7 +164,7 @@ searchtool() # patch and tar also work. if [ $UNAME = "Darwin" -o $UNAME = "FreeBSD" -o $UNAME = "NetBSD" -o $UNAME = "OpenBSD" ]; then if [ "$1" = "patch" -o "$1" = "tar" ]; then - if [ -x "$(which $1 2>/dev/null)" ]; then + if [ -x "$(command -v $1 2>/dev/null)" ]; then echo $1 return fi @@ -172,19 +172,19 @@ searchtool() fi if echo $1 | grep -q "sum" ; then algor=$(echo $1 | sed -e 's,sum,,') - if [ -x "$(which $1 2>/dev/null)" ]; then + if [ -x "$(command -v $1 2>/dev/null)" ]; then #xxxsum [file] echo $1 return - elif [ -x "$(which $algor 2>/dev/null)" ]; then + elif [ -x "$(command -v $algor 2>/dev/null)" ]; then #xxx [file] echo $algor return - elif [ -x "$(which openssl 2>/dev/null)" ]; then + elif [ -x "$(command -v openssl 2>/dev/null)" ]; then #openssl xxx [file] echo openssl $algor return - elif [ -x "$(which cksum 2>/dev/null)" ]; then + elif [ -x "$(command -v cksum 2>/dev/null)" ]; then #cksum -a xxx [file] #cksum has special options in NetBSD. Actually, NetBSD will use the second case above. echo "buildgcc" | cksum -a $algor > /dev/null 2>/dev/null && \ -- cgit v1.2.3