aboutsummaryrefslogtreecommitdiff
path: root/util/abuild
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2004-11-05 11:41:26 +0000
committerEric Biederman <ebiederm@xmission.com>2004-11-05 11:41:26 +0000
commit1a003244d623ba4854be37793cc51ff9d3185280 (patch)
tree67da99961edaf2fb9c2bcf0fc845d97fe02eee02 /util/abuild
parentca883c915ac8ff71dbe5f44a8a5767f3d7cfc37b (diff)
- Add another possible powerpc cross compiler prefix
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1757 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/abuild')
-rw-r--r--util/abuild/abuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild.sh b/util/abuild/abuild.sh
index 0ad0e576c2..1ade04118f 100644
--- a/util/abuild/abuild.sh
+++ b/util/abuild/abuild.sh
@@ -206,7 +206,7 @@ function build_target
echo " ($TARCH: subset of $ARCH)"
fi
if [ "$found_crosscompiler" == "false" -a "$TARCH" == ppc ] ;then
- for prefix in powerpc-linux- ; do
+ for prefix in powerpc-eabi- powerpc-linux- ; do
if ${prefix}gcc --version > /dev/null 2> /dev/null ; then
found_crosscompiler=true
CROSS_COMPILE=$prefix