Add NOTPARALLEL GNU make extension to avoid install errors (Issue #314)

This commit is contained in:
Michael R Sweet 2024-03-22 15:09:23 -04:00
parent c9f2cbf411
commit b4dfd13d06
No known key found for this signature in database
GPG Key ID: BE67C75EC81F3244
2 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,11 @@
# Changes in Mini-XML 4.0.2
- Fixed an issue with GNU make and parallel builds (Issue #314)
# Changes in Mini-XML 4.0.1
- Fixed missing "docdir" definition in makefile.
- Fixed missing "docdir" definition in makefile (Issue #313)
- Fixed missing CPPFLAGS, OPTIM, and WARNINGS in CFLAGS in makefile.
- Fixed configure script issues.

View File

@ -203,7 +203,9 @@ distclean: clean
# Install everything...
#
install: $(TARGETS) install-$(LIBMXML) @INSTALL_STATIC@
.NOTPARALLEL: install install-$(LIBMXML) $(INSTALL_STATIC)
install: $(TARGETS) install-$(LIBMXML) $(INSTALL_STATIC)
echo Installing documentation in $(BUILDROOT)$(docdir)...
$(INSTALL_DIR) $(BUILDROOT)$(docdir)
for file in $(DOCFILES); do \