testsh2: allow compiler fallback to gcc

. lets test work in 'pure DESTDIR' environment

Change-Id: If7d45f01f20bc6369455d706b5ad47d36946fce3
This commit is contained in:
Ben Gras 2013-09-27 15:57:41 +00:00 committed by Gerrit Code Review
parent b2dcc910d4
commit 374af94b2b

View file

@ -20,7 +20,13 @@ OLDPWD=`pwd`
export OLDPWD
# CC="exec cc -wo -F" # nonstandard flags for ACK :-(
CC=clang
if which clang 2>/dev/null
then CC=clang
elif which gcc 2>/dev/null
then CC=gcc
else echo "Can't find a compiler, skipping test"
exit 0
fi
ARCH=`arch`