diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2009-09-28 04:18:09 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-09-28 04:18:09 -0700 |
commit | f450806e22be467a8d613f9a811508ccb87a5d1a (patch) | |
tree | fbf662b173bb8a42a319e69fc26247f2999b68fe /configure.in | |
parent | 4fd894620f22dc189d3f8339e39c630c4d05421b (diff) | |
download | glibc-f450806e22be467a8d613f9a811508ccb87a5d1a.tar glibc-f450806e22be467a8d613f9a811508ccb87a5d1a.tar.gz glibc-f450806e22be467a8d613f9a811508ccb87a5d1a.tar.bz2 glibc-f450806e22be467a8d613f9a811508ccb87a5d1a.zip |
Handle future binutils versions correctly.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 4a81fb0516..182c683e50 100644 --- a/configure.in +++ b/configure.in @@ -915,10 +915,10 @@ AC_SUBST(MIG)dnl Needed by sysdeps/mach/configure.in # Accept binutils 2.13 or newer. AC_CHECK_PROG_VER(AS, $AS, --version, [GNU assembler.* \([0-9]*\.[0-9.]*\)], - [2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9]*|[3-9].*], AS=: critic_missing="$critic_missing as") + [2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*], AS=: critic_missing="$critic_missing as") AC_CHECK_PROG_VER(LD, $LD, --version, [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)], - [2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9]*]|[3-9].*, LD=: critic_missing="$critic_missing ld") + [2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*], LD=: critic_missing="$critic_missing ld") # We need the physical current working directory. We cannot use the # "pwd -P" shell builtin since that's not portable. Instead we try to |