diff options
author | Roxie Linden <roxie@lindenlab.com> | 2023-09-11 15:38:58 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-08 18:34:01 -0800 |
commit | 4079c05dd8c2d36a736b07d857152ae7989b1310 (patch) | |
tree | 853b5c44ce569841d0a93fba65732713ef76a492 /indra/newview/viewer_manifest.py | |
parent | 3fbb8a72eb8c775f8f7ac74ac0e502afb0469aa6 (diff) |
some build tweaks
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 9230cb0589..b7b737ee4b 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -1004,6 +1004,12 @@ class Darwin_x86_64_Manifest(ViewerManifest): ): self.path(libfile) + oldpath = os.path.join("@rpath", libfile) + self.run_command( + ['install_name_tool', '-change', oldpath, + '@executable_path/../Resources/%s' % libfile, + executable]) + # dylibs is a list of all the .dylib files we expect to need # in our bundled sub-apps. For each of these we'll create a # symlink from sub-app/Contents/Resources to the real .dylib. |