Fixed calls to putenv().

From-SVN: r65937
This commit is contained in:
Kean Johnston 2003-04-22 12:44:06 +00:00 committed by Kean Johnston
parent ad27e65a22
commit e4d72771c7
2 changed files with 6 additions and 2 deletions

View File

@ -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.

View File

@ -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)
{