diff options
author | Oz Linden <oz@lindenlab.com> | 2010-10-12 17:32:56 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-10-12 17:32:56 -0400 |
commit | 93d31d9bfea91d2d5917ea117cef18f82b2a668f (patch) | |
tree | 3d98f550d354d3c453c3d03165e986103062a49e /indra/newview | |
parent | f36085b0de9c3c557fd33492312abbbbea6e26a2 (diff) | |
parent | 8269d4d51cd58fa5c8fc4ac22d9f42041849889d (diff) |
merge fixes for STORM-374
Diffstat (limited to 'indra/newview')
-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__": |