mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 887832 - moz.build: Fix other remaining OS_TEST==arm references in the tree. r=gps
This commit is contained in:
parent
360d2712a4
commit
8f1664416c
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user