mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Set have_compiler based on whether gcc directory exists...
* configure.ac: Set have_compiler based on whether gcc directory exists, rather than on whether gcc is in configdirs. * configure: Rebuild. From-SVN: r176800
This commit is contained in:
parent
e207e41f47
commit
bf03b9ffec
|
@ -1,3 +1,9 @@
|
||||||
|
2011-07-26 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
|
* configure.ac: Set have_compiler based on whether gcc directory
|
||||||
|
exists, rather than on whether gcc is in configdirs.
|
||||||
|
* configure: Rebuild.
|
||||||
|
|
||||||
2011-07-21 Joseph Myers <joseph@codesourcery.com>
|
2011-07-21 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* MAINTAINERS (Global Reviewers): Add self.
|
* MAINTAINERS (Global Reviewers): Add self.
|
||||||
|
|
|
@ -4992,10 +4992,11 @@ fi
|
||||||
|
|
||||||
|
|
||||||
# Issue errors and warnings for invalid/strange bootstrap combinations.
|
# Issue errors and warnings for invalid/strange bootstrap combinations.
|
||||||
case "$configdirs" in
|
if test -r $srcdir/gcc/configure; then
|
||||||
*gcc*) have_compiler=yes ;;
|
have_compiler=yes
|
||||||
*) have_compiler=no ;;
|
else
|
||||||
esac
|
have_compiler=no
|
||||||
|
fi
|
||||||
|
|
||||||
case "$have_compiler:$host:$target:$enable_bootstrap" in
|
case "$have_compiler:$host:$target:$enable_bootstrap" in
|
||||||
*:*:*:no) ;;
|
*:*:*:no) ;;
|
||||||
|
|
|
@ -1139,10 +1139,11 @@ AC_ARG_ENABLE([bootstrap],
|
||||||
enable_bootstrap=default)
|
enable_bootstrap=default)
|
||||||
|
|
||||||
# Issue errors and warnings for invalid/strange bootstrap combinations.
|
# Issue errors and warnings for invalid/strange bootstrap combinations.
|
||||||
case "$configdirs" in
|
if test -r $srcdir/gcc/configure; then
|
||||||
*gcc*) have_compiler=yes ;;
|
have_compiler=yes
|
||||||
*) have_compiler=no ;;
|
else
|
||||||
esac
|
have_compiler=no
|
||||||
|
fi
|
||||||
|
|
||||||
case "$have_compiler:$host:$target:$enable_bootstrap" in
|
case "$have_compiler:$host:$target:$enable_bootstrap" in
|
||||||
*:*:*:no) ;;
|
*:*:*:no) ;;
|
||||||
|
|
Loading…
Reference in New Issue