diff options
author | Fedora Python maintainers <python-devel@lists.fedoraproject.org> | 2020-07-15 15:19:19 +0200 |
---|---|---|
committer | Petr Viktorin <pviktori@redhat.com> | 2020-09-29 15:59:05 +0200 |
commit | 164ef5ac4579deb6341146f3605bda144b03326a (patch) | |
tree | 28489cca3edd3ca48d7b08f0351ae17f566c4dfa | |
parent | de5d800ed8a7be444d200804b550cea52e6e4c28 (diff) | |
download | cpython-git-164ef5ac4579deb6341146f3605bda144b03326a.tar.gz |
00104-lib64-fix-for-test_install.patch
00104 #
Only used when "%%{_lib}" == "lib64"
Another lib64 fix, for distutils/tests/test_install.py; not upstream:
-rw-r--r-- | Lib/distutils/tests/test_install.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py index 397e2a7d4b..c72ae0b6cd 100644 --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -58,8 +58,9 @@ class InstallTestCase(support.TempdirManager, self.assertEqual(got, expected) libdir = os.path.join(destination, "lib", "python") + platlibdir = os.path.join(destination, "lib64", "python") check_path(cmd.install_lib, libdir) - check_path(cmd.install_platlib, libdir) + check_path(cmd.install_platlib, platlibdir) check_path(cmd.install_purelib, libdir) check_path(cmd.install_headers, os.path.join(destination, "include", "python", "foopkg")) |