Skip to content

Commit 1745832

Browse files
committed
Fix nwjs#5524: ship nacl_irt_x86_64.nexe and nacl64.exe for win-ia32
1 parent 60e50ce commit 1745832

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/package_binaries.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,10 @@ def generate_target_nw(platform_name, arch, version):
201201
target['input'].append('chromedriver.exe')
202202
if flavor in ['nacl','sdk'] :
203203
target['input'].append('pnacl')
204-
if arch == 'x64':
205-
target['input'].append('nacl_irt_x86_64.nexe')
206-
else:
204+
target['input'].append('nacl_irt_x86_64.nexe')
205+
if arch == 'ia32':
207206
target['input'].append('nacl_irt_x86_32.nexe')
207+
target['input'].append('nacl64.exe')
208208
elif platform_name == 'osx':
209209
target['input'] = [
210210
'nwjs.app',

0 commit comments

Comments
 (0)