Makefile: fix default regex settings on Darwin
authorDavid Aguilar <davvid@gmail.com>
Sat, 11 May 2013 08:22:26 +0000 (01:22 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 11 May 2013 17:41:26 +0000 (10:41 -0700)
t0070-fundamental.sh fails on Mac OS X 10.8:

$ uname -a
Darwin lustrous 12.2.0 Darwin Kernel Version 12.2.0:
Sat Aug 25 00:48:52 PDT 2012;
root:xnu-2050.18.24~1/RELEASE_X86_64 x86_64

$ ./t0070-fundamental.sh -v
fatal: regex bug confirmed: re-build git with NO_REGEX=1

Fix it by using Git's regex library.

Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile
index 0f931a203002aec397f8b454f93df9aee97a21ad..f698c1a59e4a3f6dfef8cbe43044eb75225ac552 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1054,6 +1054,7 @@ ifeq ($(uname_S),Darwin)
                        BASIC_LDFLAGS += -L/opt/local/lib
                endif
        endif
+       NO_REGEX = YesPlease
        PTHREAD_LIBS =
 endif