summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2010-10-11 09:10:56 -0400
committerOz Linden <oz@lindenlab.com>2010-10-11 09:10:56 -0400
commit011f6f9ad07d0a71c9a392f5e25af2aad69110ee (patch)
treefc9de905222568f6f81db6c468cddde28468f97e /indra
parente2e70577f90d9551f4afe637bfd486654d778e5e (diff)
parentd18b636fb848f58eb103a01701b9a292344b8bd4 (diff)
merge fix for STORM-275 (class Linux_x86_64Manifest missing from viewer_manifest.py)
Diffstat (limited to 'indra')
-rw-r--r--indra/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 949fa3cc1c..648366fa4c 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -956,6 +956,13 @@ class Linux_i686Manifest(LinuxManifest):
self.path("libvivoxplatform.so")
self.end_prefix("lib")
+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__":