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
;
31 /* Returns the highest-priority, location to look for git programs. */
32 const char *git_exec_path(void)
37 return argv_exec_path
;
39 env
= getenv(EXEC_PATH_ENVIRONMENT
);
44 return system_path(GIT_EXEC_PATH
);
47 static void add_path(struct strbuf
*out
, const char *path
)
50 if (is_absolute_path(path
))
51 strbuf_addstr(out
, path
);
53 strbuf_addstr(out
, make_nonrelative_path(path
));
55 strbuf_addch(out
, PATH_SEP
);
61 const char *old_path
= getenv("PATH");
62 struct strbuf new_path
= STRBUF_INIT
;
64 add_path(&new_path
, argv_exec_path
);
65 add_path(&new_path
, getenv(EXEC_PATH_ENVIRONMENT
));
66 add_path(&new_path
, system_path(GIT_EXEC_PATH
));
67 add_path(&new_path
, argv0_path
);
70 strbuf_addstr(&new_path
, old_path
);
72 strbuf_addstr(&new_path
, "/usr/local/bin:/usr/bin:/bin");
74 setenv("PATH", new_path
.buf
, 1);
76 strbuf_release(&new_path
);
79 const char **prepare_git_cmd(const char **argv
)
84 for (argc
= 0; argv
[argc
]; argc
++)
86 nargv
= xmalloc(sizeof(*nargv
) * (argc
+ 2));
89 for (argc
= 0; argv
[argc
]; argc
++)
90 nargv
[argc
+ 1] = argv
[argc
];
91 nargv
[argc
+ 1] = NULL
;
95 int execv_git_cmd(const char **argv
) {
96 const char **nargv
= prepare_git_cmd(argv
);
97 trace_argv_printf(nargv
, "trace: exec:");
99 /* execvp() can only ever return if it fails */
100 execvp("git", (char **)nargv
);
102 trace_printf("trace: exec failed: %s\n", strerror(errno
));
109 int execl_git_cmd(const char *cmd
,...)
112 const char *argv
[MAX_ARGS
+ 1];
116 va_start(param
, cmd
);
119 while (argc
< MAX_ARGS
) {
120 arg
= argv
[argc
++] = va_arg(param
, char *);
125 if (MAX_ARGS
<= argc
)
126 return error("too many args to run %s", cmd
);
129 return execv_git_cmd(argv
);