diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-06-02 21:48:43 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-02 15:48:43 -0600 |
commit | ccdb92510523a0302c4bd058a51530d089aac21f (patch) | |
tree | 9901f6f25373f821cedcc5ec5bfbcb2a5925f7b8 | |
parent | cc33912a9a2f47997546bea2871c52f8386d11e9 (diff) | |
download | gcc-ccdb92510523a0302c4bd058a51530d089aac21f.zip gcc-ccdb92510523a0302c4bd058a51530d089aac21f.tar.gz gcc-ccdb92510523a0302c4bd058a51530d089aac21f.tar.bz2 |
Makefile.in (site.exp): Use the object testsuite directory as the temporary directory.
* Makefile.in (site.exp): Use the object testsuite directory as
the temporary directory.
From-SVN: r20197
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/Makefile.in | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1cd5e5b..7a0e7a4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -5,6 +5,9 @@ Tue Jun 2 22:28:31 1998 Bernd Schmidt <crux@ohara.Informatik.RWTH-Aachen.DE> Tue Jun 2 22:17:26 1998 Jeffrey A Law (law@cygnus.com) + * Makefile.in (site.exp): Use the object testsuite directory as + the temporary directory. + * expr.c (expand_expr, case ADDR_EXPR): Handle taking the address of an ADDRESSOF rtx. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 6815bce..ab07317 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2515,10 +2515,7 @@ site.exp: ./config.status Makefile echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \ else true; \ fi - @if [ $(build_canonical) != $(host_canonical) ] ; then \ - echo "set tmpdir /tmp" >> ./tmp0 ; \ - else echo "set tmpdir $(objdir)/testsuite" >> ./tmp0 ; \ - fi + echo "set tmpdir $(objdir)/testsuite" >> ./tmp0 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0 @cat ./tmp0 > site.exp |