mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-13 23:35:30 +00:00
Add NOTPARALLEL GNU make extension to avoid install errors (Issue #314)
This commit is contained in:
parent
c9f2cbf411
commit
b4dfd13d06
@ -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.
|
||||
|
||||
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user