branch: externals/org commit 4c5132b9f18b86d5be51091ddce18c2b853af3dd Author: Ihor Radchenko <yanta...@posteo.net> Commit: Ihor Radchenko <yanta...@posteo.net>
Fix parallel execution of Makefiles * lisp/Makefile (.NOTPARALLEL): * mk/targets.mk (.NOTPARALLEL): Do not fiddle with explicit .NOTPARALLEL. Given that we provide correct dependencies, parallel execution should work, and it does work. --- lisp/Makefile | 1 - mk/targets.mk | 1 - 2 files changed, 2 deletions(-) diff --git a/lisp/Makefile b/lisp/Makefile index c57095f651..111d62d4cd 100644 --- a/lisp/Makefile +++ b/lisp/Makefile @@ -1,4 +1,3 @@ -.NOTPARALLEL: # always run this make serially .SUFFIXES: # we don't need default suffix rules ifeq ($(MAKELEVEL), 0) $(error This make needs to be started as a sub-make from the toplevel directory.) diff --git a/mk/targets.mk b/mk/targets.mk index 684d7f26e6..da6955cce6 100644 --- a/mk/targets.mk +++ b/mk/targets.mk @@ -1,5 +1,4 @@ .EXPORT_ALL_VARIABLES: -.NOTPARALLEL: .PHONY # Additional distribution files DISTFILES_extra= Makefile etc