Blame 00104-lib64-fix-for-test_install.patch

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