summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/viewer_manifest.py17
1 files changed, 3 insertions, 14 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index b289db9b8f..fced30370c 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -782,7 +782,6 @@ class DarwinManifest(ViewerManifest):
relpkgdir = os.path.join(pkgdir, "lib", "release")
debpkgdir = os.path.join(pkgdir, "lib", "debug")
vmpdir = os.path.join(pkgdir, "VMP")
- vmp266dir = os.path.join(vmpdir, "python26")
llbasedir = os.path.join(pkgdir, "llbase")
requestsdir = os.path.join(pkgdir, "requests")
@@ -793,10 +792,8 @@ class DarwinManifest(ViewerManifest):
self.path(os.path.join(relpkgdir, "libndofdev.dylib"), dst="Resources/libndofdev.dylib")
self.path(os.path.join(relpkgdir, "libhunspell-1.3.0.dylib"), dst="Resources/libhunspell-1.3.0.dylib")
- if self.prefix(dst="MacOS"):
- #apparently the codesign tool has a problem with dir names with dots in them
- """vmp266nodotdir = os.path.join(self.get_dst_prefix(), "python26")"""
- #this copies over the python wrapper script, associated utilities and required libraries, see SL-321, SL-322, SL-323 and MAINT-6928
+ if self.prefix(dst="MacOS"):
+ #this copies over the python wrapper script, associated utilities and required libraries, see SL-321, SL-322, SL-323
self.path2basename(vmpdir,"SL_Launcher")
self.path2basename(vmpdir,"*.py")
llbase_path = os.path.join(self.get_dst_prefix(),'llbase')
@@ -814,15 +811,7 @@ class DarwinManifest(ViewerManifest):
os.makedirs(requests_path)
if self.prefix(dst="requests"):
self.path2basename(requestsdir,"*")
- self.end_prefix()
- #these supplemental files are in case the user still has 2.6 as their default python
- #https://jira.secondlife.com/browse/MAINT-6928
- p266_path = os.path.join(self.get_dst_prefix(),'python26')
- if not os.path.exists(p266_path):
- os.makedirs(p266_path)
- if self.prefix("python26"):
- self.path2basename(vmp266dir,"*.py")
- self.end_prefix()
+ self.end_prefix()
self.end_prefix()
# most everything goes in the Resources directory