]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - python/patches/00104-lib64-fix-for-test_install.patch
gcc: Update to 6.4.0
[people/ms/ipfire-3.x.git] / python / patches / 00104-lib64-fix-for-test_install.patch
CommitLineData
913eaa17
MT
1--- Python-2.7.2/Lib/distutils/tests/test_install.py.lib64 2011-09-08 17:51:57.851405376 -0400
2+++ Python-2.7.2/Lib/distutils/tests/test_install.py 2011-09-08 18:40:46.754205096 -0400
3@@ -41,8 +41,9 @@ class InstallTestCase(support.TempdirMan
4 self.assertEqual(got, expected)
5
6 libdir = os.path.join(destination, "lib", "python")
7+ platlibdir = os.path.join(destination, "lib64", "python")
8 check_path(cmd.install_lib, libdir)
9- check_path(cmd.install_platlib, libdir)
10+ check_path(cmd.install_platlib, platlibdir)
11 check_path(cmd.install_purelib, libdir)
12 check_path(cmd.install_headers,
13 os.path.join(destination, "include", "python", "foopkg"))