##// END OF EJS Templates
statsd: use safe mode and disable statsd if we can't connect
statsd: use safe mode and disable statsd if we can't connect

File last commit:

r1028:7a402005 default
r1030:e536cb7d default
Show More
git-sh-i18n.patch
22 lines | 729 B | text/x-diff | DiffLexer
/ pkgs / patches / git / git-sh-i18n.patch
dependencies: bumped git to 2.22.0 release
r724 diff --git a/git-sh-i18n.sh b/git-sh-i18n.sh
index e1d917fd27..e90f8e1414 100644
patches: organize into a single directory.
r560 --- a/git-sh-i18n.sh
+++ b/git-sh-i18n.sh
dependencies: bumped git to 2.22.0 release
r724 @@ -26,7 +26,7 @@ then
elif test -n "$GIT_INTERNAL_GETTEXT_TEST_FALLBACKS"
then
: no probing necessary
patches: organize into a single directory.
r560 -elif type gettext.sh >/dev/null 2>&1
dependencies: bumped git to 2.22.0 release
r724 +elif type @gettext@/bin/gettext.sh >/dev/null 2>&1
then
# GNU libintl's gettext.sh
GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu
@@ -43,7 +43,8 @@ export GIT_INTERNAL_GETTEXT_SH_SCHEME
case "$GIT_INTERNAL_GETTEXT_SH_SCHEME" in
gnu)
# Use libintl's gettext.sh, or fall back to English if we can't.
patches: organize into a single directory.
r560 - . gettext.sh
dependencies: bumped git to 2.22.0 release
r724 + . @gettext@/bin/gettext.sh
+ export PATH=@gettext@/bin:$PATH
;;
gettext_without_eval_gettext)
git: bumped to latest git version....
r1028 # Solaris has a gettext(1) but no eval_gettext(1)