diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-02-10 14:48:33 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-02-10 14:48:33 -0800 |
| commit | 0199c68d010b613bde2575cd54d8c3597431fc81 (patch) | |
| tree | bface5b67ae70075c2e303bd947b54dbbb5f2aad /t/test-lib.sh | |
| parent | 938ecaa42f1be47b9bcaa947ecd6b04f9c1dc3db (diff) | |
| parent | 7599730b7e2be694142bfb2e95187afa78a5404a (diff) | |
| download | git-0199c68d010b613bde2575cd54d8c3597431fc81.tar.gz | |
Merge branch 'ab/retire-pcre1'
The support for deprecated PCRE1 library has been dropped.
* ab/retire-pcre1:
Remove support for v1 of the PCRE library
config.mak.uname: remove redundant NO_LIBPCRE1_JIT flag
Diffstat (limited to 't/test-lib.sh')
| -rw-r--r-- | t/test-lib.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 76062db296..4bfa7f74ae 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -1524,8 +1524,7 @@ esac test -z "$NO_PERL" && test_set_prereq PERL test -z "$NO_PTHREADS" && test_set_prereq PTHREADS test -z "$NO_PYTHON" && test_set_prereq PYTHON -test -n "$USE_LIBPCRE1$USE_LIBPCRE2" && test_set_prereq PCRE -test -n "$USE_LIBPCRE1" && test_set_prereq LIBPCRE1 +test -n "$USE_LIBPCRE2" && test_set_prereq PCRE test -n "$USE_LIBPCRE2" && test_set_prereq LIBPCRE2 test -z "$NO_GETTEXT" && test_set_prereq GETTEXT |
