diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-11-19 16:24:39 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-19 16:24:39 +0900 |
commit | 954932667dac15885165cdb579acbf6a774fe140 (patch) | |
tree | 73d9e230929da6c9ffcb17ac6a52516a7ff32e3f /ci | |
parent | RelNotes: name the release properly (diff) | |
parent | Makefile: ease dynamic-gettext-poison transition (diff) | |
download | tgif-954932667dac15885165cdb579acbf6a774fe140.tar.xz |
Merge branch 'ab/dynamic-gettext-poison'
Our testing framework uses a special i18n "poisoned localization"
feature to find messages that ought to stay constant but are
incorrectly marked to be translated. This feature has been made
into a runtime option (it used to be a compile-time option).
* ab/dynamic-gettext-poison:
Makefile: ease dynamic-gettext-poison transition
i18n: make GETTEXT_POISON a runtime option
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/lib-travisci.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/lib-travisci.sh b/ci/lib-travisci.sh index 06970f7213..69dff4d1ec 100755 --- a/ci/lib-travisci.sh +++ b/ci/lib-travisci.sh @@ -123,7 +123,7 @@ osx-clang|osx-gcc) # Travis CI OS X export GIT_SKIP_TESTS="t9810 t9816" ;; -GETTEXT_POISON) - export GETTEXT_POISON=YesPlease +GIT_TEST_GETTEXT_POISON) + export GIT_TEST_GETTEXT_POISON=YesPlease ;; esac |