aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure.ac
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2007-03-16 05:50:58 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2007-03-16 05:50:58 +0000
commit43bc306a765beb7dbc2b87a0e88851a904c2d0a4 (patch)
treed169cb075494a30a53a08e35fbb94edaff3b9c5d /gcc/configure.ac
parent8857ae1c20b1a7efa789d7f95674043b3e49ac51 (diff)
downloadgcc-43bc306a765beb7dbc2b87a0e88851a904c2d0a4.zip
gcc-43bc306a765beb7dbc2b87a0e88851a904c2d0a4.tar.gz
gcc-43bc306a765beb7dbc2b87a0e88851a904c2d0a4.tar.bz2
configure.ac: Don't require ELF binutils to tolerate # 0 "".
* configure.ac: Don't require ELF binutils to tolerate # 0 "". * configure: Rebuilt. From-SVN: r122978
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r--gcc/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 18134ca..7c16f93 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -3079,7 +3079,7 @@ AC_CACHE_CHECK([assembler for tolerance to line number 0],
[gcc_cv_as_line_zero],
[gcc_cv_as_line_zero=no
if test $in_tree_gas = yes; then
- gcc_GAS_VERSION_GTE_IFELSE([elf,2,16,91], [gcc_cv_as_line_zero=yes])
+ gcc_GAS_VERSION_GTE_IFELSE([2,16,91], [gcc_cv_as_line_zero=yes])
elif test "x$gcc_cv_as" != x; then
{ echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s
if AC_TRY_COMMAND([$gcc_cv_as -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD 2>conftest.out]) &&