2016-08-26 14:31:09 +03:00
|
|
|
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,
|
2012-10-06 00:39:08 +11:00
|
|
|
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"))
|