diff options
author | Philippe De Muyter <phdm@macqel.be> | 2000-06-06 19:36:34 +0200 |
---|---|---|
committer | Philippe De Muyter <phdm@gcc.gnu.org> | 2000-06-06 17:36:34 +0000 |
commit | faf0173be728c98a915e6e0f5fca97f342e4bd52 (patch) | |
tree | 0831b3c789fb251717145b8d94ea35d3a2013059 | |
parent | b6a5dfa1cf54076f29e58bf6455bb59af75f5e6a (diff) | |
download | gcc-faf0173be728c98a915e6e0f5fca97f342e4bd52.zip gcc-faf0173be728c98a915e6e0f5fca97f342e4bd52.tar.gz gcc-faf0173be728c98a915e6e0f5fca97f342e4bd52.tar.bz2 |
configure.in (Make the links): Typo fix ...
* configure.in (Make the links): Typo fix : the file that must be
included without #ifdef IN_GCC is `auto-host.h', not `auto-config.h'.
* configure: File rebuilt.
From-SVN: r34431
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.in | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3f24d77..524305f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Tue Jun 6 19:25:32 2000 Philippe De Muyter <phdm@macqel.be> + + * configure.in (Make the links): Typo fix : the file that must be + included without #ifdef IN_GCC is `auto-host.h', not `auto-config.h'. + * configure: File rebuilt. + 2000-06-06 Nathan Sidwell <nathan@codesourcery.com> * eh-common.h (EH_ALLOC_SIZE, EH_ALLOC_ALIGN): New #defines. diff --git a/gcc/configure b/gcc/configure index 9dd0c8c..ade96b0 100755 --- a/gcc/configure +++ b/gcc/configure @@ -6854,7 +6854,7 @@ do for file in `eval echo '$'$var`; do case $file in - auto-config.h) + auto-host.h) ;; *) echo '#ifdef IN_GCC' >>$link @@ -6862,7 +6862,7 @@ do esac echo "#include \"$file\"" >>$link case $file in - auto-config.h) + auto-host.h) ;; *) echo '#endif' >>$link diff --git a/gcc/configure.in b/gcc/configure.in index a49d88a..bc4cf07 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -4056,7 +4056,7 @@ do for file in `eval echo '$'$var`; do case $file in - auto-config.h) + auto-host.h) ;; *) echo '#ifdef IN_GCC' >>$link @@ -4064,7 +4064,7 @@ do esac echo "#include \"$file\"" >>$link case $file in - auto-config.h) + auto-host.h) ;; *) echo '#endif' >>$link |