Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
touilleMan committed Apr 10, 2018
1 parent 0ee4017 commit 6a3a40c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions platforms/osx-64/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@ if env["backend"] == "cpython":
"1>/dev/null make install && "
+ "LD_LIBRARY_PATH=${TARGET.get_abspath()}/lib ${TARGET.get_abspath()}/bin/pip3 install cffi",
Chmod("%s/lib/libpython3.6m.dylib" % cpython_build.abspath, 0o600),
"install_name_tool -id @loader_path/lib/libpython3.6m.dylib " +
"%s/lib/libpython3.6m.dylib" % cpython_build.abspath
]
"install_name_tool -id @loader_path/lib/libpython3.6m.dylib "
+ "%s/lib/libpython3.6m.dylib"
% cpython_build.abspath,
],
)
env.NoClean(cpython_build)

Expand Down Expand Up @@ -159,9 +160,10 @@ else: # pypy
PYPY_SRC_ARCHIVE,
[
"tar xf ${SOURCE} -C ${TARGET.srcdir}",
"install_name_tool -id @loader_path/bin/libpypy3-c.dylib " +
"%s/bin/libpypy3-c.dylib" % pypy_build.abspath
]
"install_name_tool -id @loader_path/bin/libpypy3-c.dylib "
+ "%s/bin/libpypy3-c.dylib"
% pypy_build.abspath,
],
)

def generate_build_dir(target, source, env):
Expand Down

0 comments on commit 6a3a40c

Please sign in to comment.