diff options
author | Janis Johnson <janis187@us.ibm.com> | 2002-10-18 00:15:26 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2002-10-18 00:15:26 +0000 |
commit | fa870451062c51b650ab85dc501306e32df3cf9b (patch) | |
tree | 58fd6b4cde23c02e67c24ffb64f068dc9c06ed10 | |
parent | 982216be8cdc37d13e47d74f794fc70c7cf30c2f (diff) | |
download | gcc-fa870451062c51b650ab85dc501306e32df3cf9b.zip gcc-fa870451062c51b650ab85dc501306e32df3cf9b.tar.gz gcc-fa870451062c51b650ab85dc501306e32df3cf9b.tar.bz2 |
Makefile.in (site.exp): Add ALT_CXX_UNDER_TEST and COMPAT_OPTIONS.
2002-10-17 Janis Johnson <janis187@us.ibm.com>
* Makefile.in (site.exp): Add ALT_CXX_UNDER_TEST and COMPAT_OPTIONS.
From-SVN: r58265
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 71e8c60..0cbff94 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-10-17 Janis Johnson <janis187@us.ibm.com> + + * Makefile.in (site.exp): Add ALT_CXX_UNDER_TEST and COMPAT_OPTIONS. + 2002-10-17 Jason Thorpe <thorpej@wasabisystems.com> * config/alpha/alpha.c (alpha_initialize_trampoline): Use diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 61a61b7..0da19e9 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3113,6 +3113,14 @@ site.exp: ./config.status Makefile fi echo "set tmpdir $(objdir)/testsuite" >> ./tmp0 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0 + @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \ + echo "set ALT_CXX_UNDER_TEST $(ALT_CXX_UNDER_TEST)" >> ./tmp0; \ + else true; \ + fi + @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \ + echo "set COMPAT_OPTIONS $(COMPAT_OPTIONS)" >> ./tmp0; \ + else true; \ + fi @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0 @cat ./tmp0 > site.exp @cat site.bak | sed \ |