Skip to content

Commit

Permalink
Updated make-setup.py. Use 64bit binaries as base.
Browse files Browse the repository at this point in the history
  • Loading branch information
Czarek authored and Czarek committed Jan 13, 2015
1 parent 3c07cc6 commit 916d3ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cefpython/cef3/mac/installer/make-setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def create_fat_binaries(b32, b64, bfat):
if os.path.exists(bfat):
shutil.rmtree(bfat)
os.mkdir(bfat)
res = os.system("cp -rf {}/* {}/".format(b32, bfat))
res = os.system("cp -rf {}/* {}/".format(b64, bfat))
assert res == 0
files = os.listdir(b64)
files = os.listdir(b32)
for fbase in files:
if not (fbase.endswith(".dylib") or fbase.endswith(".so")
or fbase.endswith("subprocess")):
Expand Down

0 comments on commit 916d3ff

Please sign in to comment.