diff options
author | Oz Linden <oz@lindenlab.com> | 2010-10-12 10:58:42 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-10-12 10:58:42 -0400 |
commit | 28d8612cf767d42a15c6cc8ee030bdcfab496987 (patch) | |
tree | be56c82c01f3b4e10ad2a38a2d2f8f9939f62a3b /indra/newview | |
parent | a8fbfa40ba6153668e1f713ae0e128224b4f400f (diff) | |
parent | 3f43a36d3430e94046d40cb898a9fd34cce0f7d5 (diff) |
merge up to latest viewer-development
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__": |