diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rwxr-xr-x | gcc/configure | 3 | ||||
-rw-r--r-- | gcc/configure.ac | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 85ecbe5b3cd..c6a5171f1f4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2012-10-11 Hans-Peter Nilsson <hp@bitrange.com> + * configure.ac (gcc_cv_as_comdat_group_group): Default to no. + * configure: Regenerate. + * acinclude.m4 (_gcc_COMPUTE_GAS_VERSION): Allow a single character to quote the VERSION= contents. Sanity-check contents. * configure.ac ("what linker to use" ld version extraction): Ditto. diff --git a/gcc/configure b/gcc/configure index 95dcc44eb3f..f2a9dcb13dd 100755 --- a/gcc/configure +++ b/gcc/configure @@ -22828,6 +22828,9 @@ $as_echo "$gcc_cv_as_comdat_group_percent" >&6; } if test $gcc_cv_as_comdat_group_percent = yes; then gcc_cv_as_comdat_group_group=no else + if test -z "${gcc_cv_as_comdat_group_group+set}"; then + gcc_cv_as_comdat_group_group=no + fi case "${target}" in # Sun as uses a completely different syntax. *-*-solaris2*) diff --git a/gcc/configure.ac b/gcc/configure.ac index 6f307536914..f04198b034c 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2655,6 +2655,9 @@ else if test $gcc_cv_as_comdat_group_percent = yes; then gcc_cv_as_comdat_group_group=no else + if test -z "${gcc_cv_as_comdat_group_group+set}"; then + gcc_cv_as_comdat_group_group=no + fi case "${target}" in # Sun as uses a completely different syntax. *-*-solaris2*) |