Fixed calls to putenv().
authorKean Johnston <jkj@sco.com>
Tue, 22 Apr 2003 12:44:06 +0000 (12:44 +0000)
committerKean Johnston <jkj@gcc.gnu.org>
Tue, 22 Apr 2003 12:44:06 +0000 (12:44 +0000)
From-SVN: r65937

gcc/ChangeLog
gcc/tlink.c

index d5b8370daf1a0f8ba69a001a31b801a26c37e73b..0ac082d3a39438165b8199b60244085687b81cf7 100644 (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.
index ded4337a2e8e2d6f8cb4bad041c5aa55968026d8..657472e27799b7c85d336bdce4282051525f1963 100644 (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)
     {