From 01ae841ccf3aa5d5331a4e6aed6122fee6617740 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 23 Jul 2009 22:30:07 -0700 Subject: SunOS grep does not understand -C nor -e The first "grep -C1" test in t7002 does not pass on my SunOS-5.11-i86pc, and that is not because our way to spawn external grep is broken, but because the native grep does not understand -C. It turns out that Peff was also using this option himself because our Makefile doesn't do that automatically. Brandon Casey uses SUNWspro compiler without having to set this, and it turns out that the compiler does not define preprocessor macro __unix__ which made him always use the built-in grep, never an external one. Let's be more explicit and say that we do not use external grep on Suns. Signed-off-by: Junio C Hamano diff --git a/Makefile b/Makefile index c6b81d0..f88ed3e 100644 --- a/Makefile +++ b/Makefile @@ -702,6 +702,7 @@ ifeq ($(uname_S),SunOS) NO_HSTRERROR = YesPlease NO_MKDTEMP = YesPlease OLD_ICONV = UnfortunatelyYes + NO_EXTERNAL_GREP = YesPlease ifeq ($(uname_R),5.8) NO_UNSETENV = YesPlease NO_SETENV = YesPlease -- cgit v0.10.2-6-g49f6