diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-05-17 21:49:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-05-17 21:49:21 +0800 |
commit | ea1a5fca456b891f8bb9ab248ad65651b66b54b2 (patch) | |
tree | 9619f2f9631aac471da3f8b24dd30908335627c9 /shell | |
parent | c20b1701e81473504f1d67f6e7387a6f1e5fb856 (diff) | |
parent | 99ebc23e0860ef5baf1f169803d751db70e2aa32 (diff) | |
download | gsoc2013-evolution-ea1a5fca456b891f8bb9ab248ad65651b66b54b2.tar.gz gsoc2013-evolution-ea1a5fca456b891f8bb9ab248ad65651b66b54b2.tar.zst gsoc2013-evolution-ea1a5fca456b891f8bb9ab248ad65651b66b54b2.zip |
Merge branch 'gnome-2-30' into express2
Diffstat (limited to 'shell')
-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 e327065f43..90d534f5d4 100644 --- a/shell/main.c +++ b/shell/main.c @@ -442,6 +442,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 { @@ -458,6 +460,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. */ |