If RUNTIME_PREFIX is set, git_setup_gettext() uses system_path() to find
the directory with po-files. The function system_path() needs the
exec_path so this needs to be setup first before setting up gettext().
Signed-off-by: Vincent van Ravesteijn <redacted>
---
upload-pack.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/upload-pack.c b/upload-pack.c
index bb08e2e..f5ba770 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -791,10 +791,11 @@ int main(int argc, char **argv)
int i;
int strict = 0;
- git_setup_gettext();
-
packet_trace_identity("upload-pack");
git_extract_argv0_path(argv[0]);
+
+ git_setup_gettext();
+
read_replace_refs = 0;
for (i = 1; i < argc; i++) {--
1.7.9.msysgit.0