Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-11-08 19:32:09 +0300
committerChristopher Faylor <me@cgf.cx>2005-11-08 19:32:09 +0300
commit1f99dd3ecf3252517363ec8f0fec4b0a95706f31 (patch)
treea08ff409df57cfd06c696d8083557a6f38d825bf
parent2b7992f5adbd37402b78d2d8dc07480c73780e28 (diff)
* environ.cc (spenvs): Make "SYSTEMDRIVE" an "always export".
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/environ.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index ccdd250cd..df961382f 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-08 Christopher Faylor <cgf@timesys.com>
+
+ * environ.cc (spenvs): Make "SYSTEMDRIVE" an "always export".
+
2005-11-07 Corinna Vinschen <corinna@vinschen.de>
* times.cc (futimes): Redirect to utimes_worker if given file
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc
index b7ca700ee..dceac852e 100644
--- a/winsup/cygwin/environ.cc
+++ b/winsup/cygwin/environ.cc
@@ -876,7 +876,7 @@ static NO_COPY spenv spenvs[] =
{NL ("HOMEPATH="), false, false, &cygheap_user::env_homepath},
{NL ("LOGONSERVER="), false, false, &cygheap_user::env_logsrv},
{NL ("PATH="), false, true, NULL},
- {NL ("SYSTEMDRIVE="), false, false, NULL},
+ {NL ("SYSTEMDRIVE="), false, true, NULL},
{NL ("SYSTEMROOT="), true, true, &cygheap_user::env_systemroot},
{NL ("USERDOMAIN="), false, false, &cygheap_user::env_domain},
{NL ("USERNAME="), false, false, &cygheap_user::env_name},