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.

Author Arfrever
Recipients Arfrever, asvetlov, benjamin.peterson, hynek, lregebro, ned.deily, python-dev, ronaldoussoren, stefanholek, terry.reedy
Date 2012-09-01.23:04:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346540651.25.0.130151634047.issue15645@psf.upfronthosting.co.za>
In-reply-to
Content
libinstall target now contains:

	-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
		$(PYTHON_FOR_BUILD) -Wi -c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"
	...
	@for d in $(LIBSUBDIRS); \
	do \
		a=$(srcdir)/Lib/$$d; \
		if test ! -d $$a; then continue; else true; fi; \
		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
		b=$(LIBDEST)/$$d; \
		for i in $$a/*; \

There is a small chance that with high parallelization the wildcard expansion in the last line will occur for $$a == lib2to3 before creation of pickles has finished, resulting in not installation of pickles.
The solution would be to move creation of pickles to a separate target and make it a dependency of libinstall target.
History
Date User Action Args
2012-09-01 23:04:11Arfreversetrecipients: + Arfrever, terry.reedy, ronaldoussoren, benjamin.peterson, ned.deily, lregebro, asvetlov, stefanholek, python-dev, hynek
2012-09-01 23:04:11Arfreversetmessageid: <1346540651.25.0.130151634047.issue15645@psf.upfronthosting.co.za>
2012-09-01 23:04:10Arfreverlinkissue15645 messages
2012-09-01 23:04:10Arfrevercreate