diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-09 14:49:38 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-09 14:49:38 +0000 |
commit | ec0a21033a8b56a7d188dd98e50264dc5f2393fd (patch) | |
tree | 1d6e5e6bdbff39b1d6ae356f143879a8a84d433a /gcc | |
parent | 89e4622c9c6a26e993cf16cdb66024f65ac08b16 (diff) | |
download | gcc-ec0a21033a8b56a7d188dd98e50264dc5f2393fd.tar.gz |
* configure.in: Also avoid wrapping auto-build.h with IN_GCC.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34469 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.in | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4794c4253c8..fcfa5dbbb0e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2000-06-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + * configure.in: Also avoid wrapping auto-build.h with IN_GCC. + * scan-types.sh (VALUE) Wrap use with double quotes to protect variable against filename expansion when it contains "char *". diff --git a/gcc/configure b/gcc/configure index 5dda2dbfd35..b622d267444 100755 --- a/gcc/configure +++ b/gcc/configure @@ -6854,7 +6854,7 @@ do for file in `eval echo '$'$var`; do case $file in - auto-host.h) + auto-host.h | auto-build.h ) ;; *) echo '#ifdef IN_GCC' >>$link @@ -6862,7 +6862,7 @@ do esac echo "#include \"$file\"" >>$link case $file in - auto-host.h) + auto-host.h | auto-build.h ) ;; *) echo '#endif' >>$link diff --git a/gcc/configure.in b/gcc/configure.in index 90540547db1..8b29691ef1b 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-host.h) + auto-host.h | auto-build.h ) ;; *) echo '#ifdef IN_GCC' >>$link @@ -4064,7 +4064,7 @@ do esac echo "#include \"$file\"" >>$link case $file in - auto-host.h) + auto-host.h | auto-build.h ) ;; *) echo '#endif' >>$link |