diff options
| -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 |
