diff options
author | Richard Guenther <rguenther@suse.de> | 2010-10-07 09:51:52 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-10-07 09:51:52 +0000 |
commit | 2b48f20d654e47a84e4e39d98833022da9934354 (patch) | |
tree | 73007a77f0a85efc15182080a42291e8dd43c385 /gcc | |
parent | 4e00fad27ebb547274bdcfdc077b0ccf10c1f835 (diff) | |
download | gcc-2b48f20d654e47a84e4e39d98833022da9934354.zip gcc-2b48f20d654e47a84e4e39d98833022da9934354.tar.gz gcc-2b48f20d654e47a84e4e39d98833022da9934354.tar.bz2 |
re PR other/45914 (Typo in gcc/configure.ac)
2010-10-07 Richard Guenther <rguenther@suse.de>
PR bootstrap/45914
* configure.ac: Fix typo.
* configure: Regenerated.
From-SVN: r165087
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 76c2691..4089132 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-10-07 Richard Guenther <rguenther@suse.de> + + PR bootstrap/45914 + * configure.ac: Fix typo. + * configure: Regenerated. + 2010-10-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Don't use diff --git a/gcc/configure b/gcc/configure index e2c0a13..3b20cc9 100755 --- a/gcc/configure +++ b/gcc/configure @@ -22520,7 +22520,7 @@ $as_echo_n "checking linker and ld.so.1 TLS support... " >&6; } min_tls_ld_vers_minor=343 ;; esac - if test "$ls_vers_major" -gt 1 || \ + if test "$ld_vers_major" -gt 1 || \ test "$ld_vers_minor" -ge "$min_tls_ld_vers_minor"; then ld_tls_support=yes else diff --git a/gcc/configure.ac b/gcc/configure.ac index 14690d3..164d3f4 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -3015,7 +3015,7 @@ case "$target" in min_tls_ld_vers_minor=343 ;; esac - if test "$ls_vers_major" -gt 1 || \ + if test "$ld_vers_major" -gt 1 || \ test "$ld_vers_minor" -ge "$min_tls_ld_vers_minor"; then ld_tls_support=yes else |