summaryrefslogtreecommitdiff
path: root/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorbrad kittenbrink <brad@lindenlab.com>2010-06-01 19:05:07 -0700
committerbrad kittenbrink <brad@lindenlab.com>2010-06-01 19:05:07 -0700
commit1a460b0f086319cf3db2297338afc5cf557b7fae (patch)
tree87e7e1fec316b2225fdbef127a567d57dce75130 /indra/newview/viewer_manifest.py
parentf24335d7901b040365b4934c5fc0ce8f7d694f18 (diff)
Finished VPLAT-248: Fix for symbol file generation missing info.
Actually this is kind of 3 independent fixes, one for a different bug on each platform.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-xindra/newview/viewer_manifest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index dac1409aee..255995aea9 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -930,7 +930,8 @@ class Linux_i686Manifest(LinuxManifest):
self.path("libvivoxplatform.so")
self.end_prefix("lib")
- if self.args['buildtype'].lower() == 'release':
+ # *TODO switch this to use self.is_packaging_viewer() once I understand all the consequences -brad
+ if self.args['buildtype'].lower() == 'release' and 'package' in self.args['actions']:
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