diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/viewer_manifest.py | 5 | 
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()  | 
