diff options
author | Oz Linden <oz@lindenlab.com> | 2010-10-12 10:59:43 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-10-12 10:59:43 -0400 |
commit | 8269d4d51cd58fa5c8fc4ac22d9f42041849889d (patch) | |
tree | be56c82c01f3b4e10ad2a38a2d2f8f9939f62a3b /indra/newview/viewer_manifest.py | |
parent | 8b55caf9767777c2bfd578cba22f220b2c2c21be (diff) | |
parent | 28d8612cf767d42a15c6cc8ee030bdcfab496987 (diff) |
pull fixes for STORM-368 (enable LL_TESTS on all tests)
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r-- | indra/newview/viewer_manifest.py | 7 |
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__": |