diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tlink.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d5b8370..0ac082d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-22 Kean Johnston <jkj@sco.com> + + * tlink.c (recompile_files): Add missing '=' to putenv calls + 2003-04-22 Nathan Sidwell <nathan@codesourcery.com> * ginclude/stddef.h: Provide C++ safe offsetof. diff --git a/gcc/tlink.c b/gcc/tlink.c index ded4337..657472e 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) { |