diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-03-14 16:33:22 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-03-14 16:33:22 +0000 |
commit | 2f110a80068fc35207e8d3b4cd9544f1c456a173 (patch) | |
tree | 1b78910c12a08b8d1562e5ca4e591be14dfa8459 /util/abuild | |
parent | 2075dbea45b0921e575c375eed597efd65bef9eb (diff) | |
download | coreboot-2f110a80068fc35207e8d3b4cd9544f1c456a173.tar.xz |
trivial patch for abuild: allow powerpc-elf-gcc, too.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4005 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/abuild')
-rwxr-xr-x | util/abuild/abuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index b8e288f192..dbb2cfec4a 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -373,7 +373,7 @@ function build_target fi if [ "$found_crosscompiler" == "false" -a "$TARCH" == ppc ];then for prefix in powerpc-eabi- powerpc-linux- ppc_74xx- \ - powerpc-7450-linux-gnu-; do + powerpc-7450-linux-gnu- powerpc-elf-; do if ${prefix}gcc --version > /dev/null 2> /dev/null ; then found_crosscompiler=true CROSS_COMPILE=$prefix |