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

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