From e4d72771c70287ce6fa03abf843dac249251d102 Mon Sep 17 00:00:00 2001 From: Kean Johnston Date: Tue, 22 Apr 2003 12:44:06 +0000 Subject: [PATCH] Fixed calls to putenv(). From-SVN: r65937 --- gcc/ChangeLog | 4 ++++ gcc/tlink.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d5b8370daf1..0ac082d3a39 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-22 Kean Johnston + + * tlink.c (recompile_files): Add missing '=' to putenv calls + 2003-04-22 Nathan Sidwell * ginclude/stddef.h: Provide C++ safe offsetof. diff --git a/gcc/tlink.c b/gcc/tlink.c index ded4337a2e8..657472e2779 100644 --- a/gcc/tlink.c +++ b/gcc/tlink.c @@ -467,8 +467,8 @@ recompile_files () { file *f; - putenv (xstrdup ("COMPILER_PATH")); - putenv (xstrdup ("LIBRARY_PATH")); + putenv (xstrdup ("COMPILER_PATH=")); + putenv (xstrdup ("LIBRARY_PATH=")); while ((f = file_pop ()) != NULL) {