cgit

commit 35b3c67ac285f0c488b0d3042a1bbc44ef4f1f67

Author: John Keeping <john@keeping.me.uk>

Makefile: fix MAKEFLAGS tests with multiple flags

findstring is defined as $(findstring FIND,IN) so if multiple flags are
set these tests do the wrong thing unless $(MAKEFLAGS) is the second
argument.

Signed-off-by: John Keeping <john@keeping.me.uk>

 Makefile | 2 +-


diff --git a/Makefile b/Makefile
index 138fe5b3e49e9f6b3c2bf170567f2dcdefbccec6..77b9f60d3275a63da579624fb9c79d6f9707cb3e 100644
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@ #
 QUIET_SUBDIR0  = +$(MAKE) -C # space to separate -C and subdir
 QUIET_SUBDIR1  =
 
-ifneq ($(findstring $(MAKEFLAGS),w),w)
+ifneq ($(findstring w,$(MAKEFLAGS)),w)
 PRINT_DIR = --no-print-directory
 else # "make -w"
 NO_SUBDIR = :