From b63f9495ec6b3d8a0714dfe2dc9224fe841fb47d Mon Sep 17 00:00:00 2001 From: "dougt%meer.net" Date: Tue, 8 Mar 2005 05:08:32 +0000 Subject: [PATCH] using TARGET_CPU instead of CPU to determine if we are cross compiling to ARM. Of course this is only for WindowsCE. This fixes a build bustage. git-svn-id: svn://10.0.0.236/trunk@170363 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/reflect/xptcall/src/md/win32/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/xpcom/reflect/xptcall/src/md/win32/Makefile.in b/mozilla/xpcom/reflect/xptcall/src/md/win32/Makefile.in index c9c24cc39a1..9fb6d4d6a89 100644 --- a/mozilla/xpcom/reflect/xptcall/src/md/win32/Makefile.in +++ b/mozilla/xpcom/reflect/xptcall/src/md/win32/Makefile.in @@ -75,10 +75,10 @@ ASFLAGS += /I../../..public endif ifeq ($(OS_ARCH),WINCE) -ifeq ($(CPU),ARM) -CPPSRCS := xptcinvokece.cpp xptcstubsce.cpp -ASFILES := -AS := +ifeq ($(TARGET_CPU),arm) +CPPSRCS = xptcinvokece.cpp xptcstubsce.cpp +ASFILES = +AS = ASFLAGS += /I../../..public endif endif