summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2010-11-29 10:48:19 -0500
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2010-11-29 10:48:19 -0500
commit19ced614ad35e936de18b9387dff54de39df09fd (patch)
tree8420486f7b3bf10eebf793115d96b3199c56a3b1 /indra
parent3d9aac7f16a86dbbdd1678b66bf31bbd63e0b422 (diff)
parentd524cf98c7f67a12f06c4626649d4571aa6d57fc (diff)
merge
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/viewer_manifest.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index e637c43674..5503cc8372 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -971,6 +971,11 @@ class Linux_i686Manifest(LinuxManifest):
self.path("libvivoxplatform.so")
self.end_prefix("lib")
+ 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 -S" % {'d': self.get_dst_prefix()} ) # makes some small assumptions about our packaged dir structure
+
+
class Linux_x86_64Manifest(LinuxManifest):
def construct(self):
super(Linux_x86_64Manifest, self).construct()