Bug 628606 - elfhack causes bustage since ARM target may not return arm. r=glandium,a=sdwilsh

This commit is contained in:
Makoto Kato 2011-01-28 09:22:59 +01:00
parent ffb82fe543
commit 352aaf6c99

View File

@ -58,8 +58,12 @@ OS_CXXFLAGS := $(filter-out -fno-exceptions,$(OS_CXXFLAGS)) -fexceptions
ifneq (,$(filter %86,$(TARGET_CPU)))
CPU := x86
else
ifneq (,$(filter arm%,$(TARGET_CPU)))
CPU := arm
else
CPU := $(TARGET_CPU)
endif
endif
CSRCS := \
inject/$(CPU).c \