Skip to content

Commit

Permalink
call fix-rpaths.sh in proper working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed Jul 1, 2024
1 parent 0e67eaf commit 3239128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ if platform == "darwin":
binary = path.join(install_dir, targ + '.app', 'Contents/MacOS', targ)
env.Command(Dir(target_dir), binary, [Delete(target_dir), bundle_libraries_for])
# After building, fix the rpaths of the executables and their bundled libs:
atexit.register(lambda: subprocess.call(['.github/workflows/scripts/mac/fix-rpaths.sh']))
atexit.register(lambda: subprocess.call(['.github/workflows/scripts/mac/fix-rpaths.sh'], cwd='build'))
elif platform == "win32":
bundled_libs += Split("""
libsndfile-1
Expand Down

0 comments on commit 3239128

Please sign in to comment.