diff --git a/doc/contributions.txt b/doc/contributions.txt
index 2e4d80325253576e7ffbcd441766c2b5b50d0e88..7b47cd25ae5c1bbcc98658872a11cdb1fa2ebe26 100644
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -594,6 +594,7 @@ Teardrops Fall
 Techwolf Lupindo
 	SNOW-92
 	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 3f379fcf75bb9aae6b078194e3e5231a9612467e..cb9dd32cbe629c4095cfa9989656269ebb4044ce 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -917,6 +917,13 @@ def construct(self):
             print "* Going strip-crazy on the packaged binaries, since this is a RELEASE build"
             self.run_command("find %(d)r/bin %(d)r/lib -type f | xargs --no-run-if-empty strip -S" % {'d': self.get_dst_prefix()} ) # makes some small assumptions about our packaged dir structure
 
+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__":