diff options
author | Thomas Schwinge <tschwinge@baylibre.com> | 2024-03-11 00:24:01 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@baylibre.com> | 2024-03-11 00:24:01 +0100 |
commit | 190facd2b3e26476bc9af21761ca55f42f28286e (patch) | |
tree | 499b079618fd448b0f0b36a9ee3fc0123e82bfc0 /gcc | |
parent | a22ac0f9ff0ea47645a1d059ffeb334a5cb24a9d (diff) | |
parent | 120397f3963541db4e0121baebadf7f82452278c (diff) | |
download | gcc-190facd2b3e26476bc9af21761ca55f42f28286e.zip gcc-190facd2b3e26476bc9af21761ca55f42f28286e.tar.gz gcc-190facd2b3e26476bc9af21761ca55f42f28286e.tar.bz2 |
Merge commit '9fc0ae6033f3e41c9b4605531a6a8543414b0d2d^' into HEAD
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index 161a320..420d108 100755 --- a/gcc/configure +++ b/gcc/configure @@ -11302,7 +11302,7 @@ else # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. - if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then + if "$acl_cv_path_LD" -v 2>&1 < /dev/null | $EGREP '(GNU|with BFD)' > /dev/null; then test "$with_gnu_ld" != no && break else test "$with_gnu_ld" != yes && break @@ -11330,7 +11330,7 @@ if ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. -if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then +if $LD -v 2>&1 </dev/null | $EGREP '(GNU|with BFD)' 1>&5; then acl_cv_prog_gnu_ld=yes else acl_cv_prog_gnu_ld=no |