diff options
author | Oz Linden <oz@lindenlab.com> | 2010-10-13 10:53:10 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-10-13 10:53:10 -0400 |
commit | 7bb74afb67770fb8a02543a5e3a02a9b6d65bc57 (patch) | |
tree | d12b00a2308b0fe000b2eaeb3529b31eeb0c2762 /indra/newview/viewer_manifest.py | |
parent | a351c5005eebb03a03f0e79d2efcc5a304fab481 (diff) | |
parent | 41484c19eeb534330a17aff7e7b6663b86198cfe (diff) |
Automated merge with ssh://bitbucket.org/merov_linden/viewer-development-storm-137
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | 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 84dd37ead3..6861f02bfb 100755 --- 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__": |