From: Nathan Sidwell Date: Sun, 1 Jul 2001 20:01:47 +0000 (+0000) Subject: tlink.c (recompile_files): Remove COMPILER_PATH and LIBRARY_PATH from the environment. X-Git-Tag: prereleases/libstdc++-3.0.95~3540 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3746c4a2d6d3dd646d833ed8fc08a1317f9fdf66;p=thirdparty%2Fgcc.git tlink.c (recompile_files): Remove COMPILER_PATH and LIBRARY_PATH from the environment. * tlink.c (recompile_files): Remove COMPILER_PATH and LIBRARY_PATH from the environment. From-SVN: r43677 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6077e4585240..0e45f90e1cb0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-07-01 Nathan Sidwell + + * tlink.c (recompile_files): Remove COMPILER_PATH and + LIBRARY_PATH from the environment. + 2001-07-01 Zack Weinberg * c-common.h (enum rid): Add RID_FIRST_AT, RID_LAST_AT, diff --git a/gcc/tlink.c b/gcc/tlink.c index 8b8ca0c46989..606707dd28f9 100644 --- a/gcc/tlink.c +++ b/gcc/tlink.c @@ -495,6 +495,9 @@ recompile_files () { file *f; + putenv ("COMPILER_PATH"); + putenv ("LIBRARY_PATH"); + while ((f = file_pop ()) != NULL) { char *line, *command;