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

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