From 1b647f44bcb39b5249e197f1c8d028a7304b44cd Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Mon, 1 Oct 2007 18:09:42 +0000 Subject: [PATCH] The shell_1_sh test was failing with "make -jX". Approved by: re (kensmith) --- tools/build/make_check/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/make_check/Makefile b/tools/build/make_check/Makefile index 4c2389a1b098..e57e70c32db4 100644 --- a/tools/build/make_check/Makefile +++ b/tools/build/make_check/Makefile @@ -262,7 +262,7 @@ shell_1_csh: .if make(shell_1_sh) .SHELL: name="sh" shell_1_sh: - @ps -ax -opid,command | awk '$$1=="'$$$$'" { print $$2 }' | grep -q '^/bin/sh$$' + @ps -ax -opid,command | awk '$$1=="'$$$$'" { print $$2 }' | grep -E -q '^(/bin/)?sh$$' .endif .if make(shell_2)