churchyard / rpms / python2

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