7 static const char *argv_exec_path
;
8 static const char *argv0_path
;
10 const char *system_path(const char *path
)
12 if (!is_absolute_path(path
) && argv0_path
) {
13 struct strbuf d
= STRBUF_INIT
;
14 strbuf_addf(&d
, "%s/%s", argv0_path
, path
);
15 path
= strbuf_detach(&d
, NULL
);
20 void git_set_argv0_path(const char *path
)
25 void git_set_argv_exec_path(const char *exec_path
)
27 argv_exec_path
= exec_path
;
29 * Propagate this setting to external programs.
31 setenv(EXEC_PATH_ENVIRONMENT
, exec_path
, 1);
35 /* Returns the highest-priority, location to look for git programs. */
36 const char *git_exec_path(void)
41 return argv_exec_path
;
43 env
= getenv(EXEC_PATH_ENVIRONMENT
);
48 return system_path(GIT_EXEC_PATH
);
51 static void add_path(struct strbuf
*out
, const char *path
)
54 if (is_absolute_path(path
))
55 strbuf_addstr(out
, path
);
57 strbuf_addstr(out
, make_nonrelative_path(path
));
59 strbuf_addch(out
, PATH_SEP
);
65 const char *old_path
= getenv("PATH");
66 struct strbuf new_path
= STRBUF_INIT
;
68 add_path(&new_path
, argv_exec_path
);
69 add_path(&new_path
, getenv(EXEC_PATH_ENVIRONMENT
));
70 add_path(&new_path
, system_path(GIT_EXEC_PATH
));
71 add_path(&new_path
, argv0_path
);
74 strbuf_addstr(&new_path
, old_path
);
76 strbuf_addstr(&new_path
, "/usr/local/bin:/usr/bin:/bin");
78 setenv("PATH", new_path
.buf
, 1);
80 strbuf_release(&new_path
);
83 const char **prepare_git_cmd(const char **argv
)
88 for (argc
= 0; argv
[argc
]; argc
++)
90 nargv
= xmalloc(sizeof(*nargv
) * (argc
+ 2));
93 for (argc
= 0; argv
[argc
]; argc
++)
94 nargv
[argc
+ 1] = argv
[argc
];
95 nargv
[argc
+ 1] = NULL
;
99 int execv_git_cmd(const char **argv
) {
100 const char **nargv
= prepare_git_cmd(argv
);
101 trace_argv_printf(nargv
, "trace: exec:");
103 /* execvp() can only ever return if it fails */
104 execvp("git", (char **)nargv
);
106 trace_printf("trace: exec failed: %s\n", strerror(errno
));
113 int execl_git_cmd(const char *cmd
,...)
116 const char *argv
[MAX_ARGS
+ 1];
120 va_start(param
, cmd
);
123 while (argc
< MAX_ARGS
) {
124 arg
= argv
[argc
++] = va_arg(param
, char *);
129 if (MAX_ARGS
<= argc
)
130 return error("too many args to run %s", cmd
);
133 return execv_git_cmd(argv
);