6e8c2f
--- Python-2.7.2/Lib/distutils/tests/test_install.py.lib64	2011-09-08 17:51:57.851405376 -0400
6e8c2f
+++ Python-2.7.2/Lib/distutils/tests/test_install.py	2011-09-08 18:40:46.754205096 -0400
6e8c2f
@@ -41,8 +41,9 @@ class InstallTestCase(support.TempdirMan
6e8c2f
             self.assertEqual(got, expected)
6e8c2f
 
6e8c2f
         libdir = os.path.join(destination, "lib", "python")
6e8c2f
+        platlibdir = os.path.join(destination, "lib64", "python")
6e8c2f
         check_path(cmd.install_lib, libdir)
6e8c2f
-        check_path(cmd.install_platlib, libdir)
6e8c2f
+        check_path(cmd.install_platlib, platlibdir)
6e8c2f
         check_path(cmd.install_purelib, libdir)
6e8c2f
         check_path(cmd.install_headers,
6e8c2f
                    os.path.join(destination, "include", "python", "foopkg"))