From 7c3ad46b487e3fea728e25cf0c0f9c4bb93436d3 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 28 Nov 2012 19:15:38 +0900 Subject: [PATCH] Correct the endianess. mips-linux is little endian (missed edit from the copy from ps3) --- tools/cross/mipsel-linux/cross-configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cross/mipsel-linux/cross-configure.sh b/tools/cross/mipsel-linux/cross-configure.sh index 083ac6b91..a52258872 100755 --- a/tools/cross/mipsel-linux/cross-configure.sh +++ b/tools/cross/mipsel-linux/cross-configure.sh @@ -8,6 +8,6 @@ export PKG_CONFIG_LIBDIR=$MIPSEL/usr/mipsel-gcw0-linux-uclibc/sysroot/lib/pkgcon export PATH=$MIPSEL/usr/bin:$PATH ../../configure --host=mipsel-linux \ --disable-sdl-cd \ - --with-endian=big \ + --with-endian=little \ SDL_CONFIG=$MIPSEL/usr/mipsel-gcw0-linux-uclibc/sysroot/usr/bin/sdl-config \ $*