diff options
| -rw-r--r-- | doc/contributions.txt | 1 | ||||
| -rw-r--r-- | indra/newview/viewer_manifest.py | 7 | 
2 files changed, 8 insertions, 0 deletions
| diff --git a/doc/contributions.txt b/doc/contributions.txt index ef0f81d9c8..e9afca3ebf 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -669,6 +669,7 @@ Techwolf Lupindo  	SNOW-690  	SNOW-746  	VWR-12385 +	VWR-20893  tenebrous pau  	VWR-247  Tharax Ferraris 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__": | 
