diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-21 17:03:19 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-21 17:03:19 +0200 |
commit | a031abc166e2426a90d838a8106abe3148965404 (patch) | |
tree | fdb00723ec830414403b1b7c2a4fe816c867aafc | |
parent | Add a test for extension modules in the distutils record file. (diff) | |
download | cpython-a031abc166e2426a90d838a8106abe3148965404.tar.gz cpython-a031abc166e2426a90d838a8106abe3148965404.tar.bz2 cpython-a031abc166e2426a90d838a8106abe3148965404.zip |
Fix distutils test_install for shared CPython builds
-rw-r--r-- | Lib/distutils/tests/test_install.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py index 2133fa79162..e065aa3dcd0 100644 --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -202,6 +202,7 @@ class InstallTestCase(support.TempdirManager, support.copy_xxmodule_c(project_dir) buildcmd = build_ext(dist) + support.fixup_build_ext(buildcmd) buildcmd.ensure_finalized() buildcmd.run() |