diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1995-04-25 15:38:15 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1995-04-25 15:38:15 -0700 |
commit | 713ff25294f13f8319ae845973c0b85f0a054392 (patch) | |
tree | c4eac660e2cbd267b271624a4626688fd296b91a /gcc/config/mips/cross64.h | |
parent | 3ffeb8f1c7fd30c30c880000724c87835b2d91fb (diff) | |
download | gcc-713ff25294f13f8319ae845973c0b85f0a054392.zip gcc-713ff25294f13f8319ae845973c0b85f0a054392.tar.gz gcc-713ff25294f13f8319ae845973c0b85f0a054392.tar.bz2 |
(INIT_ENVIRONMENT): Define as string not putenv call.
From-SVN: r9453
Diffstat (limited to 'gcc/config/mips/cross64.h')
-rw-r--r-- | gcc/config/mips/cross64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/cross64.h b/gcc/config/mips/cross64.h index 19c17fb..fcbb16f 100644 --- a/gcc/config/mips/cross64.h +++ b/gcc/config/mips/cross64.h @@ -12,7 +12,7 @@ /* Must add TOOLROOT to the environment, or else the assembler will not work. */ #define INIT_ENVIRONMENT \ - putenv ("TOOLROOT=/usr/cross64") + "TOOLROOT=/usr/cross64" #undef STARTFILE_SPEC #define STARTFILE_SPEC \ |