From 7d85883a901e95a88773888e1261e7c13115c4e3 Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Fri, 28 Jul 2023 22:38:12 +0900 Subject: [PATCH] UBUNTU: [Packaging] Add .NOTPARALLEL The targets in debian/rules are not intended to run in parallel. Add .NOTPARALLEL like the Debian kernel. Signed-off-by: Masahiro Yamada Signed-off-by: Andrea Righi --- debian/rules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/rules b/debian/rules index 034aa2b789a6..99d91078f7db 100755 --- a/debian/rules +++ b/debian/rules @@ -11,6 +11,8 @@ # (this increases performance and avoids hard-to-debug behaviour) MAKEFLAGS += -rR +.NOTPARALLEL: + DEBIAN=$(shell awk -F= '($$1 == "DEBIAN") { print $$2 }'