summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-05-09 03:16:10 +0200
committerAlejandro Colomar <alx@kernel.org>2023-05-09 03:16:10 +0200
commitfb7cbb170ed314f8687517a3a3a55cc702bf83d9 (patch)
treea82c540d41caab14569f30c09c547a3e07a24abf
parent321db68f6f2a47361fb9f888ddda3dca1202393d (diff)
Makefile: Silence a warning from GNU Make 4.4
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 668be64..eacfd63 100644
--- a/Makefile
+++ b/Makefile
@@ -71,4 +71,7 @@ $(builddir)/:
-$(V).SILENT:
+ifdef V
+else
+.SILENT:
+endif