Skip to content

Commit

Permalink
Add NOTPARALLEL GNU make extension to avoid install errors (Issue #314)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Mar 22, 2024
1 parent c9f2cbf commit b4dfd13
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 3 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit b4dfd13

Please sign in to comment.