summaryrefslogtreecommitdiff
path: root/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorTechwolf Lupindo <bitbucket.org@trap.wereanimal.net>2010-08-22 16:05:41 -0400
committerTechwolf Lupindo <bitbucket.org@trap.wereanimal.net>2010-08-22 16:05:41 -0400
commite089937a0de6a82a6f39bb840c7dd99cfdde9869 (patch)
tree05d01e7be477f59b67429253fd9acc05b65ea450 /indra/newview/viewer_manifest.py
parent96ca4ac9dc5fed1f0c80cff4af1aec76cee2955e (diff)
VWR-20893: "class Linux_x86_64Manifest" missing from viewer_manifest.py Breaking linux 64-bit build.
(transplanted from 111a293c0e1c9062b1aa83dda7cf28aa22754930)
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-xindra/newview/viewer_manifest.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 3f379fcf75..cb9dd32cbe 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -917,6 +917,13 @@ class Linux_i686Manifest(LinuxManifest):
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()
+
+ # support file for valgrind debug tool
+ self.path("secondlife-i686.supp")
+
################################################################
if __name__ == "__main__":