projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad27e65
)
Fixed calls to putenv().
author
Kean Johnston
<jkj@sco.com>
Tue, 22 Apr 2003 12:44:06 +0000
(12:44 +0000)
committer
Kean Johnston
<jkj@gcc.gnu.org>
Tue, 22 Apr 2003 12:44:06 +0000
(12:44 +0000)
From-SVN: r65937
gcc/ChangeLog
patch
|
blob
|
history
gcc/tlink.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index d5b8370daf1a0f8ba69a001a31b801a26c37e73b..0ac082d3a39438165b8199b60244085687b81cf7 100644
(file)
--- 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 ded4337a2e8e2d6f8cb4bad041c5aa55968026d8..657472e27799b7c85d336bdce4282051525f1963 100644
(file)
--- 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)
{