Bug 887832 - moz.build: Fix other remaining OS_TEST==arm references in the tree. r=gps

This commit is contained in:
Cykesiopka 2013-10-31 22:48:45 -04:00
parent 360d2712a4
commit 8f1664416c

View File

@ -60,7 +60,7 @@ if CONFIG['OS_TARGET'] == 'NTO':
'xptcinvoke_gcc_x86_unix.cpp',
'xptcstubs_gcc_x86_unix.cpp',
]
elif CONFIG['OS_TEST'] == 'arm':
elif CONFIG['CPU_ARCH'] == 'arm':
SOURCES += [
'xptcinvoke_nto_arm.cpp',
'xptcstubs_nto_arm.cpp',
@ -111,7 +111,7 @@ if CONFIG['OS_TEST'] == 'alpha':
'xptcstubs_alpha_openbsd.cpp',
]
if CONFIG['OS_TEST'].startswith('arm') or CONFIG['OS_TEST'] == 'sa110':
if CONFIG['CPU_ARCH'] == 'arm' or CONFIG['OS_TEST'] == 'sa110':
if CONFIG['OS_ARCH'] == 'Linux':
SOURCES += [
'xptcinvoke_arm.cpp',
@ -123,7 +123,7 @@ if CONFIG['OS_TEST'].startswith('arm') or CONFIG['OS_TEST'] == 'sa110':
'xptcstubs_arm_netbsd.cpp',
]
if CONFIG['OS_TEST'] == 'arm' and CONFIG['OS_ARCH'] == 'OpenBSD':
if CONFIG['CPU_ARCH'] == 'arm' and CONFIG['OS_ARCH'] == 'OpenBSD':
SOURCES += [
'xptcinvoke_arm_openbsd.cpp',
'xptcstubs_arm_openbsd.cpp',