* configure.in: Also avoid wrapping auto-build.h with IN_GCC.
From-SVN: r34469
This commit is contained in:
parent
2c8c1c46b1
commit
6efa15825e
@ -1,5 +1,7 @@
|
|||||||
2000-06-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
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
|
* scan-types.sh (VALUE) Wrap use with double quotes to protect
|
||||||
variable against filename expansion when it contains "char *".
|
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
|
for file in `eval echo '$'$var`; do
|
||||||
case $file in
|
case $file in
|
||||||
auto-host.h)
|
auto-host.h | auto-build.h )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo '#ifdef IN_GCC' >>$link
|
echo '#ifdef IN_GCC' >>$link
|
||||||
@ -6862,7 +6862,7 @@ do
|
|||||||
esac
|
esac
|
||||||
echo "#include \"$file\"" >>$link
|
echo "#include \"$file\"" >>$link
|
||||||
case $file in
|
case $file in
|
||||||
auto-host.h)
|
auto-host.h | auto-build.h )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo '#endif' >>$link
|
echo '#endif' >>$link
|
||||||
|
@ -4056,7 +4056,7 @@ do
|
|||||||
|
|
||||||
for file in `eval echo '$'$var`; do
|
for file in `eval echo '$'$var`; do
|
||||||
case $file in
|
case $file in
|
||||||
auto-host.h)
|
auto-host.h | auto-build.h )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo '#ifdef IN_GCC' >>$link
|
echo '#ifdef IN_GCC' >>$link
|
||||||
@ -4064,7 +4064,7 @@ do
|
|||||||
esac
|
esac
|
||||||
echo "#include \"$file\"" >>$link
|
echo "#include \"$file\"" >>$link
|
||||||
case $file in
|
case $file in
|
||||||
auto-host.h)
|
auto-host.h | auto-build.h )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo '#endif' >>$link
|
echo '#endif' >>$link
|
||||||
|
Loading…
Reference in New Issue
Block a user