Scott R Parish, Mon, Oct 22, 2007 19:01:48 +0200: > +static void add_path(struct strbuf *out, const char *path) > +{ > + if (path && strlen(path)) { > + if (is_absolute_path(path)) > + strbuf_addstr(out, path); > + else > + strbuf_addstr(out, make_absolute_path(path)); > + > + strbuf_addch(out, ':'); Shouldn't it break MingW32 native port? > + } > +} > + > +void setup_path(const char *cmd_path) > +{ > + const char *old_path = getenv("PATH"); > + struct strbuf new_path; > + > + strbuf_init(&new_path, 0); > + > + add_path(&new_path, argv_exec_path); > + add_path(&new_path, getenv(EXEC_PATH_ENVIRONMENT)); > + add_path(&new_path, builtin_exec_path); > + add_path(&new_path, cmd_path); > + trailing space > + if (old_path) > + strbuf_addstr(&new_path, old_path); > + else > + strbuf_addstr(&new_path, "/usr/local/bin:/usr/bin:/bin"); the default PATH is platform-dependent. Git is multi-platform. You should consider putting the path list somewhere in Makefile, config.mak or configure. > + > + setenv("PATH", new_path.buf, 1); - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html