summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2010-12-06 17:36:33 -0500
committerNyx (Neal Orman) <nyx@lindenlab.com>2010-12-06 17:36:33 -0500
commit344ed17d87a850bfe9e124692c25ed698bf3f4bd (patch)
treeb403dcf9a717808bdbd8859971c19146321f742f /indra
parentcb8dbaf0ef0c66294440aa209997de1a8bce382d (diff)
parent2bbb4223bbcf262a745d718c3083be1d4f69ddf1 (diff)
Automated merge with https://hg.secondlife.com/mesh-development
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/viewer_manifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 3003617b37..9fc76a09c4 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -1035,7 +1035,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 -S" % {'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 \\! -name update_install | 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):