summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2005-05-16 15:48:36 +0000
committerCorinna Vinschen <corinna@vinschen.de>2005-05-16 15:48:36 +0000
commit451c738befa50461c659c9bcebfef0fcf9e9cd00 (patch)
tree0ad0ba621eebde7f9c68d5f03855420d1bb1e257
parent41dcb6199c7c905ae3bcfc8ffa6c3c3310435818 (diff)
downloadcygnal-451c738befa50461c659c9bcebfef0fcf9e9cd00.tar.gz
cygnal-451c738befa50461c659c9bcebfef0fcf9e9cd00.tar.bz2
cygnal-451c738befa50461c659c9bcebfef0fcf9e9cd00.zip
* environ.cc (conv_envvars): Remove LD_LIBRARY_PATH entirely.
It doesn't belong here.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/environ.cc4
2 files changed, 5 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index f627fd4d0..3c11a55de 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-16 Corinna Vinschen <corinna@vinschen.de>
+
+ * environ.cc (conv_envvars): Remove LD_LIBRARY_PATH entirely.
+ It doesn't belong here.
+
2005-05-15 Corinna Vinschen <corinna@vinschen.de>
* environ.cc (conv_envvars): Treat LD_LIBRARY_PATH as path list.
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc
index a280f52c7..774ce0be5 100644
--- a/winsup/cygwin/environ.cc
+++ b/winsup/cygwin/environ.cc
@@ -61,10 +61,6 @@ static win_env conv_envvars[] =
cygwin_posix_to_win32_path_list_buf_size, true},
{NL ("HOME="), NULL, NULL, cygwin_conv_to_full_posix_path,
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH, false},
- {NL ("LD_LIBRARY_PATH="), NULL, NULL, cygwin_win32_to_posix_path_list,
- cygwin_posix_to_win32_path_list,
- cygwin_win32_to_posix_path_list_buf_size,
- cygwin_posix_to_win32_path_list_buf_size, true},
{NL ("TMPDIR="), NULL, NULL, cygwin_conv_to_full_posix_path,
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH, false},
{NL ("TMP="), NULL, NULL, cygwin_conv_to_full_posix_path,