* configure.in: Also avoid wrapping auto-build.h with IN_GCC.
From-SVN: r34469
This commit is contained in:
parent
2c8c1c46b1
commit
6efa15825e
3 changed files with 6 additions and 4 deletions
|
@ -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 *".
|
||||
|
||||
|
|
4
gcc/configure
vendored
4
gcc/configure
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue