summaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2017-05-20 21:42:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-05-20 23:25:37 (GMT)
commit3eb585c112a75c1b2d1ecf0e98e4c2ad12750afa (patch)
treeed5409f8d3db6feb4ba51e2310a8d26095e4d8f6 /t/test-lib.sh
parentd048cb13c237655d7637c36b5cbe1eed263987c8 (diff)
downloadgit-3eb585c112a75c1b2d1ecf0e98e4c2ad12750afa.zip
git-3eb585c112a75c1b2d1ecf0e98e4c2ad12750afa.tar.gz
git-3eb585c112a75c1b2d1ecf0e98e4c2ad12750afa.tar.bz2
test-lib: rename the LIBPCRE prerequisite to PCRE
Rename the LIBPCRE prerequisite to PCRE. This is for preparation for libpcre2 support, where having just "LIBPCRE" would be confusing as it implies v1 of the library. None of these tests are incompatible between versions 1 & 2 of libpcre, it's less confusing to give them a more general name to make it clear that they work on both library versions. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 13b5696..6abf1d1 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -1010,7 +1010,7 @@ esac
( COLUMNS=1 && test $COLUMNS = 1 ) && test_set_prereq COLUMNS_CAN_BE_1
test -z "$NO_PERL" && test_set_prereq PERL
test -z "$NO_PYTHON" && test_set_prereq PYTHON
-test -n "$USE_LIBPCRE" && test_set_prereq LIBPCRE
+test -n "$USE_LIBPCRE" && test_set_prereq PCRE
test -z "$NO_GETTEXT" && test_set_prereq GETTEXT
# Can we rely on git's output in the C locale?