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
;
64 strbuf_init(&new_path
, 0);
66 add_path(&new_path
, argv_exec_path
);
67 add_path(&new_path
, getenv(EXEC_PATH_ENVIRONMENT
));
68 add_path(&new_path
, system_path(GIT_EXEC_PATH
));
69 add_path(&new_path
, argv0_path
);
72 strbuf_addstr(&new_path
, old_path
);
74 strbuf_addstr(&new_path
, "/usr/local/bin:/usr/bin:/bin");
76 setenv("PATH", new_path
.buf
, 1);
78 strbuf_release(&new_path
);
81 const char **prepare_git_cmd(const char **argv
)
86 for (argc
= 0; argv
[argc
]; argc
++)
88 nargv
= xmalloc(sizeof(*nargv
) * (argc
+ 2));
91 for (argc
= 0; argv
[argc
]; argc
++)
92 nargv
[argc
+ 1] = argv
[argc
];
93 nargv
[argc
+ 1] = NULL
;
97 int execv_git_cmd(const char **argv
) {
98 const char **nargv
= prepare_git_cmd(argv
);
99 trace_argv_printf(nargv
, "trace: exec:");
101 /* execvp() can only ever return if it fails */
102 execvp("git", (char **)nargv
);
104 trace_printf("trace: exec failed: %s\n", strerror(errno
));
111 int execl_git_cmd(const char *cmd
,...)
114 const char *argv
[MAX_ARGS
+ 1];
118 va_start(param
, cmd
);
121 while (argc
< MAX_ARGS
) {
122 arg
= argv
[argc
++] = va_arg(param
, char *);
127 if (MAX_ARGS
<= argc
)
128 return error("too many args to run %s", cmd
);
131 return execv_git_cmd(argv
);