* environ.cc (conv_envvars): Detect and convert all environment variables used

by libiberty's choose-temp.c
This commit is contained in:
Christopher Faylor
2000-06-15 03:50:03 +00:00
parent 01c327ba27
commit 48b1381da1
2 changed files with 9 additions and 0 deletions

View File

@@ -43,6 +43,10 @@ static win_env conv_envvars[] =
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH},
{"TMPDIR=", 7, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
return_MAX_PATH, return_MAX_PATH},
{"TMP=", 4, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
return_MAX_PATH, return_MAX_PATH},
{"TEMP=", 5, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
return_MAX_PATH, return_MAX_PATH},
{NULL, 0, NULL, NULL, NULL, NULL, 0, 0}
};