diff options
author | Jacek Antonelli | 2010-11-13 23:20:23 -0600 |
---|---|---|
committer | Jacek Antonelli | 2010-11-14 02:08:26 -0600 |
commit | 521ba06c1f1f8058b6f72897a37d437bf6e7548c (patch) | |
tree | 96fe114c71a4515fcd39e74e1267ad89ad2cabff /linden/indra | |
parent | Fixed path to Mac SLPlugin launcher. (diff) | |
download | meta-impy-521ba06c1f1f8058b6f72897a37d437bf6e7548c.zip meta-impy-521ba06c1f1f8058b6f72897a37d437bf6e7548c.tar.gz meta-impy-521ba06c1f1f8058b6f72897a37d437bf6e7548c.tar.bz2 meta-impy-521ba06c1f1f8058b6f72897a37d437bf6e7548c.tar.xz |
Mac SLPlugin.app needs symlinks to some libs.
Diffstat (limited to 'linden/indra')
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index c9a2f7b..948e88e 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -771,17 +771,28 @@ class DarwinManifest(ViewerManifest): | |||
771 | # self.path("../mac_updater/" + self.args['configuration'] + "/mac-updater.app", "mac-updater.app") | 771 | # self.path("../mac_updater/" + self.args['configuration'] + "/mac-updater.app", "mac-updater.app") |
772 | 772 | ||
773 | # our apps dependencies on shared libs | 773 | # our apps dependencies on shared libs |
774 | # mac_crash_logger_res_path = self.dst_path_of("mac-crash-logger.app/Contents/Resources") | 774 | if dylibs["llcommon"]: |
775 | # mac_updater_res_path = self.dst_path_of("mac-updater.app/Contents/Resources") | 775 | # mac_crash_logger_res_path = self.dst_path_of("mac-crash-logger.app/Contents/Resources") |
776 | # for libfile in ("libllcommon.dylib", | 776 | # mac_updater_res_path = self.dst_path_of("mac-updater.app/Contents/Resources") |
777 | # "libapr-1.0.3.7.dylib", | 777 | slplugin_res_path = self.dst_path_of("SLPlugin.app/Contents/Resources") |
778 | # "libaprutil-1.0.3.8.dylib", | 778 | for libfile in ("libllcommon.dylib", |
779 | # "libexpat.0.5.0.dylib"): | 779 | "libapr-1.0.3.7.dylib", |
780 | # target_lib = os.path.join('../../..', libfile) | 780 | "libaprutil-1.0.3.8.dylib", |
781 | # self.run_command("ln -sf %(target)r %(link)r" % | 781 | "libexpat.0.5.0.dylib", |
782 | # {'target': target_lib, | 782 | ): |
783 | # 'link' : os.path.join(mac_crash_logger_res_path, libfile)} | 783 | target_lib = os.path.join('../../..', libfile) |
784 | # ) | 784 | # self.run_command("ln -sf %(target)r %(link)r" % |
785 | # {'target': target_lib, | ||
786 | # 'link' : os.path.join(mac_crash_logger_res_path, libfile)} | ||
787 | # ) | ||
788 | # self.run_command("ln -sf %(target)r %(link)r" % | ||
789 | # {'target': target_lib, | ||
790 | # 'link' : os.path.join(mac_updater_res_path, libfile)} | ||
791 | # ) | ||
792 | self.run_command("ln -sf %(target)r %(link)r" % | ||
793 | {'target': target_lib, | ||
794 | 'link' : os.path.join(slplugin_res_path, libfile)} | ||
795 | ) | ||
785 | 796 | ||
786 | # plugin launcher | 797 | # plugin launcher |
787 | self.path("../llplugin/slplugin/" + self.args['configuration'] + "/SLPlugin.app", "SLPlugin.app") | 798 | self.path("../llplugin/slplugin/" + self.args['configuration'] + "/SLPlugin.app", "SLPlugin.app") |