aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index d07ebf0..9751936 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -445,18 +445,20 @@ class LinuxManifest(ViewerManifest):
445 self.path("wrapper.sh","secondlife") 445 self.path("wrapper.sh","secondlife")
446 self.path("handle_secondlifeprotocol.sh") 446 self.path("handle_secondlifeprotocol.sh")
447 self.path("register_secondlifeprotocol.sh") 447 self.path("register_secondlifeprotocol.sh")
448 self.path("unicode.ttf","unicode.ttf")
449 self.end_prefix("linux_tools") 448 self.end_prefix("linux_tools")
450 449
451 # Create an appropriate gridargs.dat for this package, denoting required grid. 450 # Create an appropriate gridargs.dat for this package, denoting required grid.
452 self.put_in_file(self.flags_list(), 'gridargs.dat') 451 self.put_in_file(self.flags_list(), 'gridargs.dat')
453 452
453
454 def package_finish(self):
454 # stripping all the libs removes a few megabytes from the end-user package 455 # stripping all the libs removes a few megabytes from the end-user package
455 for s,d in self.file_list: 456 for s,d in self.file_list:
456 if re.search("lib/lib.+\.so.*", d): 457 if re.search("lib/lib.+\.so.*", d):
457 self.run_command('strip -S %s' % d) 458 self.run_command('strip -S %s' % d)
459 if re.search("app_settings/mozilla-runtime-.*/lib.+\.so.*", d):
460 self.run_command('strip %s' % d)
458 461
459 def package_finish(self):
460 if(self.args.has_key('installer_name')): 462 if(self.args.has_key('installer_name')):
461 installer_name = self.args['installer_name'] 463 installer_name = self.args['installer_name']
462 else: 464 else:
@@ -506,7 +508,6 @@ class Linux_i686Manifest(LinuxManifest):
506 self.path("libdb-4.2.so") 508 self.path("libdb-4.2.so")
507 self.path("libcrypto.so.0.9.7") 509 self.path("libcrypto.so.0.9.7")
508 self.path("libssl.so.0.9.7") 510 self.path("libssl.so.0.9.7")
509 self.path("libexpat.so.1")
510# self.path("libstdc++.so.6") 511# self.path("libstdc++.so.6")
511 self.path("libuuid.so", "libuuid.so.1") 512 self.path("libuuid.so", "libuuid.so.1")
512 self.path("libSDL-1.2.so.0") 513 self.path("libSDL-1.2.so.0")