From: Jeff King Date: Tue, 16 Jun 2009 19:08:21 +0000 (-0400) Subject: Makefile: use compat regex on Solaris X-Git-Tag: v1.6.4-rc0~16^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ee78cac22b3e5e3f93898361b87a38b488c5592e;p=git.git Makefile: use compat regex on Solaris The system regex is either slow or buggy for complex patterns, like the built-in xfuncname pattern for java files. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 0cb21da6d..3bd0c08f4 100644 --- a/Makefile +++ b/Makefile @@ -725,6 +725,7 @@ ifeq ($(uname_S),SunOS) NO_MEMMEM = YesPlease NO_MKDTEMP = YesPlease NO_MKSTEMPS = YesPlease + NO_REGEX = YesPlease ifeq ($(uname_R),5.7) NEEDS_RESOLV = YesPlease NO_IPV6 = YesPlease