summaryrefslogtreecommitdiff
path: root/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2010-10-15 19:29:31 -0400
committerNyx (Neal Orman) <nyx@lindenlab.com>2010-10-15 19:29:31 -0400
commitf670360d45d10c12f8146c2041efa438f69146d7 (patch)
treecaa92002e6dc0d60a1ac6fe5d66af5401c4426d4 /indra/newview/viewer_manifest.py
parent75c8a1c995d427461d14765381658d55791f1abb (diff)
SH-329 WIP get branch ready for open source release
updated build config to strip havok debug symbols also added mac convex decomp stub lib.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r--indra/newview/viewer_manifest.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 6a5518fb20..a3f9babf09 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -713,6 +713,8 @@ class DarwinManifest(ViewerManifest):
# This may be desirable for the final release. Or not.
if ("package" in self.args['actions'] or
"unpacked" in self.args['actions']):
+ self.run_command('strip -w -N hk* %(viewer_binary)r' %
+ { 'viewer_binary' : self.dst_path_of('Contents/MacOS/Second Life')})
self.run_command('strip -S %(viewer_binary)r' %
{ 'viewer_binary' : self.dst_path_of('Contents/MacOS/Second Life')})
@@ -931,7 +933,6 @@ class Linux_i686Manifest(LinuxManifest):
self.path("libexpat.so.1")
self.path("libglod.so")
self.path("libssl.so.0.9.7")
- self.path("libuuid.so.1")
self.path("libSDL-1.2.so.0")
self.path("libELFIO.so")
self.path("libopenjpeg.so.1.3.0", "libopenjpeg.so.1.3")
@@ -968,6 +969,7 @@ class Linux_i686Manifest(LinuxManifest):
if self.args['buildtype'].lower() == 'release' and self.is_packaging_viewer():
print "* Going strip-crazy on the packaged binaries, since this is a RELEASE build"
+ self.run_command("find %(d)r/bin %(d)r/lib -type f | xargs --no-run-if-empty strip -w -N hk* " % {'d': self.get_dst_prefix()} ) # makes some small assumptions about our packaged dir structure
self.run_command("find %(d)r/bin %(d)r/lib -type f | xargs --no-run-if-empty strip -S" % {'d': self.get_dst_prefix()} ) # makes some small assumptions about our packaged dir structure
################################################################