diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-05-11 04:51:11 +0800 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-05-11 04:51:11 +0800 |
commit | 8b53dacec60eb150d376cc90c571540fb32a6af4 (patch) | |
tree | c34fd31d0e2c0b5bc9d39d1d71d7ebdacb9d1711 /shell/main.c | |
parent | 8254cecbb865761e1cd1a854f5a8779b6448cb81 (diff) | |
download | gsoc2013-evolution-8b53dacec60eb150d376cc90c571540fb32a6af4.tar.gz gsoc2013-evolution-8b53dacec60eb150d376cc90c571540fb32a6af4.tar.zst gsoc2013-evolution-8b53dacec60eb150d376cc90c571540fb32a6af4.zip |
[win32] Set patch to evolution's bindir because some child processes
need it in some situations.
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/main.c b/shell/main.c index eba992e193..60871e60c2 100644 --- a/shell/main.c +++ b/shell/main.c @@ -410,6 +410,8 @@ main (gint argc, gchar **argv) GError *error = NULL; #ifdef G_OS_WIN32 + gchar *path; + if (fileno (stdout) != -1 && _get_osfhandle (fileno (stdout)) != -1) { /* stdout is fine, presumably redirected to a file or pipe */ } else { @@ -426,6 +428,13 @@ main (gint argc, gchar **argv) dup2 (fileno (stderr), 2); } } + + path = g_build_path (";", _e_get_bindir (), g_getenv ("PATH"), NULL); + + if (!g_setenv ("PATH", path, TRUE)) + g_warning ("Could not set PATH for Evolution and its child processes"); + + g_free (path); #endif /* Make ElectricFence work. */ |