From b4dfd13d06cce6e69ba5fd78cb33cb956bf1bcad Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 22 Mar 2024 15:09:23 -0400 Subject: [PATCH] Add NOTPARALLEL GNU make extension to avoid install errors (Issue #314) --- CHANGES.md | 7 ++++++- Makefile.in | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f20229e..5e3bb04 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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. diff --git a/Makefile.in b/Makefile.in index d3c49ba..bfb462b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 \