From 2379ff8df984f94bcafeaa5605b60cb250ac0434 Mon Sep 17 00:00:00 2001 From: "julien.pierre.boogz%sun.com" Date: Thu, 26 Mar 2009 01:19:06 +0000 Subject: [PATCH] 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 --- mozilla/security/nss/lib/freebl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/security/nss/lib/freebl/Makefile b/mozilla/security/nss/lib/freebl/Makefile index a816ebddb01..82014a961f1 100644 --- a/mozilla/security/nss/lib/freebl/Makefile +++ b/mozilla/security/nss/lib/freebl/Makefile @@ -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