This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: sharedinstall target doesn't depend on sharedmods target
Type: compile error Stage:
Components: Build Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Arfrever, benjamin.peterson
Priority: normal Keywords: patch

Created on 2010-07-17 04:48 by Arfrever, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python-Makefile.pre.in.patch Arfrever, 2010-07-17 04:48 Fix for Makefile.pre.in
Messages (2)
msg110537 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) Date: 2010-07-17 04:48
altinstall target depends on libinstall target, which depends on build_all target, which depends on sharedmods target.
altinstall target also depends on sharedinstall target.
Both sharedmods and sharedinstall targets call setup.py.
This can cause failure of parallel installation, when setup.py is called twice at the same time.

This problem was reproduced by Gentoo users:
https://bugs.gentoo.org/show_bug.cgi?id=328009

I'm attaching the patch.
msg110600 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-07-17 20:39
r82934
History
Date User Action Args
2022-04-11 14:57:03adminsetgithub: 53526
2010-07-17 20:39:34benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg110600

resolution: fixed
2010-07-17 04:48:15Arfrevercreate