Blame SOURCES/0045-Make-the-top-level-makefile-not-parallelize.patch

d5c737
From aae6a63e34320299a3707a9a468ab78333230283 Mon Sep 17 00:00:00 2001
d5c737
From: Peter Jones <pjones@redhat.com>
d5c737
Date: Fri, 11 Oct 2019 10:52:12 -0400
d5c737
Subject: [PATCH 45/63] Make the top level makefile not parallelize.
d5c737
d5c737
Right now if you run:
d5c737
d5c737
  make
d5c737
  make -j9 clean all
d5c737
d5c737
"clean" and "all" will run in parallel, and "all" will often finish
d5c737
before "clean" will.  This is obviously wrong.
d5c737
d5c737
This patch adds .NOTPARALLEL: at the top level, so none of the top-level
d5c737
targets will parallelize, because we really never want that.
d5c737
d5c737
Signed-off-by: Peter Jones <pjones@redhat.com>
d5c737
---
d5c737
 Makefile | 2 +-
d5c737
 1 file changed, 1 insertion(+), 1 deletion(-)
d5c737
d5c737
diff --git a/Makefile b/Makefile
d5c737
index 2d134ea9d6f..61b79a60369 100644
d5c737
--- a/Makefile
d5c737
+++ b/Makefile
d5c737
@@ -83,4 +83,4 @@ archive: abicheck bumpver abidw tag efivar.spec
d5c737
 	@rm -rf /tmp/efivar-$(GITTAG)
d5c737
 	@echo "The archive is in efivar-$(GITTAG).tar.bz2"
d5c737
 
d5c737
-
d5c737
+.NOTPARALLEL:
d5c737
-- 
d5c737
2.26.2
d5c737