diff options
| author | callum@lindenlab.com <callum@lindenlab.com> | 2017-03-15 16:33:51 -0700 | 
|---|---|---|
| committer | callum@lindenlab.com <callum@lindenlab.com> | 2017-03-15 16:33:51 -0700 | 
| commit | bdecc9cce982ab35ce1d74444515f536e66d4356 (patch) | |
| tree | e15a3e3b778c467be47717e8c52fe69fc8442352 | |
| parent | f0b5a263c19477e66df1470c8ff5df6ee339f7f1 (diff) | |
Next part of the 'SL-641 Update CEF -> cef-bin -> Dullahan -> p64_3p-Dullahan -> media_plugin_cef.cpp to current latest version' puzzle - fix @rpath/@executable paths for macOS
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 3dd44fb19e..3a8cd0c626 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -867,11 +867,9 @@ class DarwinManifest(ViewerManifest):                      self.end_prefix() -                    # the helper app needs to have it's @executable_path modified to point to the  -                    # same location we drop the CEF framework shortcut                      helperexecutablepath = self.dst_path_of('SLPlugin.app/Contents/Frameworks/DullahanHelper.app/Contents/MacOS/DullahanHelper')                      self.run_command('install_name_tool -change ' -                                     '"@executable_path/Chromium Embedded Framework" ' +                                     '"@rpath/Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework" '                                       '"@executable_path/Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework" "%s"' % helperexecutablepath)                  # SLPlugin plugins @@ -896,6 +894,12 @@ class DarwinManifest(ViewerManifest):                      self.end_prefix("llplugin") +                    # do this install_name_tool *after* media plugin is copied over +                    dylibexecutablepath = self.dst_path_of('llplugin/media_plugin_cef.dylib') +                    self.run_command('install_name_tool -change ' +                                     '"@rpath/Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework" ' +                                     '"@executable_path/../Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework" "%s"' % dylibexecutablepath) +                  self.end_prefix("Resources")                  # CEF framework goes inside Second Life.app/Contents/Frameworks | 
