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

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