Fix for bug 431958. Switch from OS_REL_CFLAGS to DEFINES. r=nelson

git-svn-id: svn://10.0.0.236/trunk@256700 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
julien.pierre.boogz%sun.com
2009-03-26 01:19:06 +00:00
parent c82cf786d1
commit 2379ff8df9

View File

@@ -77,11 +77,11 @@ endif
ifdef FREEBL_NO_DEPEND
DEFINES += -DFREEBL_NO_DEPEND
endif
# some codes want _X86_ defined for intel CPUs.
# some code wants _X86_ defined for intel CPUs.
# coreconf does this for windows, but not for Linux, FreeBSD, etc.
ifeq (,$(filter-out x86 x86_64,$(CPU_ARCH)))
ifneq (,$(filter-out WIN%,$(OS_TARGET)))
OS_REL_CFLAGS += -D_X86_
DEFINES += -D_X86_
endif
endif