mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
docs: fix intermittent make distcheck failures
Use .NOTPARALLEL when building docs. This avoids intermittent make distcheck failures like 'cp: cannot create regular file `build/image.entities': File exists' when using -jN. Fixes #590718.
This commit is contained in:
parent
d3f1d2aeb5
commit
ba60de2fa0
1 changed files with 4 additions and 0 deletions
|
@ -173,3 +173,7 @@ $(BUILDIMAGESDIR)/%.ps: %.png
|
|||
check-local: $(BUILDDIR)/$(MAIN)
|
||||
@cp -f $(srcdir)/../image-png $(BUILDDIR)/image.entities
|
||||
cd $(BUILDDIR) && xmllint -noout -valid $(MAIN)
|
||||
|
||||
# avoid 'cp: cannot create regular file `build/image.entities': File exists'
|
||||
# errors during 'make distcheck' by disabling parallel builds
|
||||
.NOTPARALLEL:
|
||||
|
|
Loading…
Reference in a new issue