* Fix to qvm compilation on big endian architectures

This commit is contained in:
Tim Angus 2007-10-13 12:03:47 +00:00
parent 8f43965e13
commit 6dffd08e74
4 changed files with 24 additions and 104 deletions

View file

@ -44,12 +44,12 @@ PLATFORM=$(COMPILE_PLATFORM)
endif
export PLATFORM
ifndef ARCH
ARCH=$(COMPILE_ARCH)
ifeq ($(COMPILE_ARCH),powerpc)
COMPILE_ARCH=ppc
endif
ifeq ($(ARCH),powerpc)
ARCH=ppc
ifndef ARCH
ARCH=$(COMPILE_ARCH)
endif
export ARCH