git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Use system_path to find 'po'-dir to resolve relative paths
@ 2012-06-06 13:01 Vincent van Ravesteijn
  2012-06-06 13:03 ` [PATCH] git-upload-pack: Setup exec_path before gettext Vincent van Ravesteijn
  2012-06-06 18:28 ` [PATCH] Use system_path to find 'po'-dir to resolve relative paths Junio C Hamano
  0 siblings, 2 replies; 3+ messages in thread
From: Vincent van Ravesteijn @ 2012-06-06 13:01 UTC (permalink / raw)
  To: git; +Cc: gitster, Vincent van Ravesteijn

If the specified path for the 'po'-files is a relative path and if
RUNTIME_PREFIX is set, system_path must be used to resolve the directory relative to the executable.

Signed-off-by: Vincent van Ravesteijn <vfr@lyx.org>
---
 gettext.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/gettext.c b/gettext.c
index f75bca7..632ccf8 100644
--- a/gettext.c
+++ b/gettext.c
@@ -4,6 +4,7 @@
 
 #include "git-compat-util.h"
 #include "gettext.h"
+#include "exec_cmd.h"
 
 #ifndef NO_GETTEXT
 #	include <locale.h>
@@ -123,7 +124,7 @@ void git_setup_gettext(void)
 
 	if (!podir)
 		podir = GIT_LOCALE_PATH;
-	bindtextdomain("git", podir);
+	bindtextdomain("git", system_path(podir));
 	setlocale(LC_MESSAGES, "");
 	init_gettext_charset("git");
 	textdomain("git");
-- 
1.7.9.msysgit.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-06-06 18:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-06 13:01 [PATCH] Use system_path to find 'po'-dir to resolve relative paths Vincent van Ravesteijn
2012-06-06 13:03 ` [PATCH] git-upload-pack: Setup exec_path before gettext Vincent van Ravesteijn
2012-06-06 18:28 ` [PATCH] Use system_path to find 'po'-dir to resolve relative paths Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).