Skip to content

Commit 916d3ff

Browse files
CzarekCzarek
authored andcommitted
Updated make-setup.py. Use 64bit binaries as base.
1 parent 3c07cc6 commit 916d3ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cefpython/cef3/mac/installer/make-setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ def create_fat_binaries(b32, b64, bfat):
4747
if os.path.exists(bfat):
4848
shutil.rmtree(bfat)
4949
os.mkdir(bfat)
50-
res = os.system("cp -rf {}/* {}/".format(b32, bfat))
50+
res = os.system("cp -rf {}/* {}/".format(b64, bfat))
5151
assert res == 0
52-
files = os.listdir(b64)
52+
files = os.listdir(b32)
5353
for fbase in files:
5454
if not (fbase.endswith(".dylib") or fbase.endswith(".so")
5555
or fbase.endswith("subprocess")):

0 commit comments

Comments
 (0)