From 1f46471290f09b398de628d463e6ce75518798a5 Mon Sep 17 00:00:00 2001 From: Mark Waddle Date: Mon, 21 Oct 2024 18:03:06 -0700 Subject: [PATCH] Uses findstr (instead of grep) for windows (#156) --- tools/makefiles/recursive.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/makefiles/recursive.mk b/tools/makefiles/recursive.mk index 42cf2c72..bbaa213c 100644 --- a/tools/makefiles/recursive.mk +++ b/tools/makefiles/recursive.mk @@ -78,7 +78,7 @@ else ifeq ($(suffix $(SHELL)),.exe) @$(MAKE) -C $@ $(MAKECMDGOALS) IS_RECURSIVE_MAKE=1 1>$(call fix_path,$@/make.log) $(stderr_redirect_stdout) || \ ( \ - grep -qF "*** No" $(call fix_path,$@/make.log) || ( \ + (findstr /c:"*** No" $(call fix_path,$@/make.log) ${ignore_output}) || ( \ echo $@ >> $(call fix_path,$(mkfile_dir)/make_error_dirs.log) && \ $(call touch,$@/make_error.log) \ ) \