I usually compile openbios on PowerPC for PowerPC. Apparently I'm the

only onedoing that, as that (really easy) case got broken by the cross 
compilation overhaul.

Let's allow host = target gcc configurations again.

Signed-off-by: Alexander Graf <agraf@suse.de>


git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@645 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Alexander Graf 2009-12-18 20:41:51 +00:00 committed by Laurent Vivier
parent bef737dcb3
commit 6b497163c8
1 changed files with 3 additions and 0 deletions

View File

@ -93,6 +93,9 @@ select_prefix()
return
fi
done
if [ "$ARCH" = "$HOSTARCH" ]; then
return
fi
echo "ERROR: no ${1} cross-compiler found !" 1>&2
exit 1
}