1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-29 21:46:59 +03:00

autotools: Disable parallel Python build

Makefile rules with multiple output files don't work reliably with
parallel builds. There are several ways to fix this issue with GNU Make,
but they aren't portable. I'd be really interested in a totally
reliable, cross-platform solution to this problem.

.NOTPARALLEL is also understood by BSD make, at least.
This commit is contained in:
Nick Wellnhofer 2022-09-06 00:47:00 +02:00
parent 9d19c169bb
commit ea8f7c92a9

View File

@ -1,5 +1,9 @@
# Makefile for libxml2 python library
# We use a rule with multiple output files which creates problems with
# parallel builds.
.NOTPARALLEL:
SUBDIRS = . tests
docsdir = $(docdir)/python