Commit e4d72771 by Kean Johnston Committed by Kean Johnston

Fixed calls to putenv().

From-SVN: r65937
parent ad27e65a
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.
......
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment