summaryrefslogtreecommitdiff
path: root/git-sh-i18n.sh
diff options
context:
space:
mode:
authorAlex Riesen <raa.lkml@gmail.com>2012-01-23 22:04:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-01-23 22:24:14 (GMT)
commitad17ea734770126bfe1027a8a999e9e2d9f62145 (patch)
treebbc04c122860c7c59536f22c6027e4e66ce6f705 /git-sh-i18n.sh
parent42f16113ee87ff667fef3a821e530ce2393c6a35 (diff)
downloadgit-ad17ea734770126bfe1027a8a999e9e2d9f62145.zip
git-ad17ea734770126bfe1027a8a999e9e2d9f62145.tar.gz
git-ad17ea734770126bfe1027a8a999e9e2d9f62145.tar.bz2
add a Makefile switch to avoid gettext translation in shell scripts
Some systems have gettext.sh (GNU gettext) installed, but it is either broken or misconfigured in such a way so its output is not usable. In case the users of these systems are unable or not interested in fixing them, setting the new Makefile switch should help: make USE_GETTEXT_SCHEME=fallthrough This will replace the translation routines with fallthrough versions, that does not use gettext from the platform. Signed-off-by: Alex Riesen <raa.lkml@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-sh-i18n.sh')
-rw-r--r--git-sh-i18n.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-sh-i18n.sh b/git-sh-i18n.sh
index 6648bd3..d5fae99 100644
--- a/git-sh-i18n.sh
+++ b/git-sh-i18n.sh
@@ -18,7 +18,10 @@ export TEXTDOMAINDIR
# First decide what scheme to use...
GIT_INTERNAL_GETTEXT_SH_SCHEME=fallthrough
-if test -n "$GIT_INTERNAL_GETTEXT_TEST_FALLBACKS"
+if test -n "@@USE_GETTEXT_SCHEME@@"
+then
+ GIT_INTERNAL_GETTEXT_SH_SCHEME="@@USE_GETTEXT_SCHEME@@"
+elif test -n "@@USE_FALLTHROUGH_GETTEXT_SCHEME@@$GIT_INTERNAL_GETTEXT_TEST_FALLBACKS"
then
: no probing necessary
elif test -n "$GIT_GETTEXT_POISON"