mirror of
https://abf.rosa.ru/djam/python3.11.git
synced 2025-02-23 18:22:52 +00:00
21 lines
929 B
Diff
21 lines
929 B
Diff
commit f5f8c02d2ed86f971871e2d3eb524c3e773a9235
|
|
Author: Philippe Makowski <pmakowski@espelida.com>
|
|
Date: Sun Jul 3 14:29:59 2016 +0200
|
|
|
|
fdr-lib64-fix-for-test_install
|
|
|
|
diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py
|
|
index 9313330..3d80e96 100644
|
|
--- a/Lib/distutils/tests/test_install.py
|
|
+++ b/Lib/distutils/tests/test_install.py
|
|
@@ -56,8 +56,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"))
|