Skip to content

Commit 84abbec

Browse files
author
Dario Segura
committed
[TVOS] maketvos script names the output framework JavaScriptCore instead of JavaScriptCore-tvOS
1 parent e70480a commit 84abbec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maketvos.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ def build(out, derived_data_path):
2323

2424
jsc = FrameworkBuild(workspace="JavaScriptCore-iOS.xcworkspace",
2525
scheme="JavaScriptCore tvOS",
26-
name="JavaScriptCore-tvOS",
26+
name="JavaScriptCore",
2727
conf="Production",
2828
outdir=outdir,
2929
derived_data_path=derived_data_path)
3030
jsc.build()
3131

3232
# FIXME: wtf headers are copied... remove them:
33-
shutil.rmtree(os.path.join(outdir, 'JavaScriptCore-tvOS.framework',
33+
shutil.rmtree(os.path.join(outdir, 'JavaScriptCore.framework',
3434
'Headers', 'wtf'))
3535

3636
return outdir

0 commit comments

Comments
 (0)