diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-11 00:00:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-11 00:00:40 +0000 |
commit | 7559b94331de6615ae2a2312f3f7efa4cc46a4c3 (patch) | |
tree | d9cb58da3b50a03bb9d40718c3f7ca9da73ea0ac /configure | |
parent | fe848e93865384db7457d3b01aad298a6f785be7 (diff) | |
download | glibc-7559b94331de6615ae2a2312f3f7efa4cc46a4c3.tar glibc-7559b94331de6615ae2a2312f3f7efa4cc46a4c3.tar.gz glibc-7559b94331de6615ae2a2312f3f7efa4cc46a4c3.tar.bz2 glibc-7559b94331de6615ae2a2312f3f7efa4cc46a4c3.zip |
Regenerated.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1545,7 +1545,7 @@ if eval "test \"`echo '$''{'libc_cv_prog_as_gnu'+set}'`\" = set"; then else # Most GNU programs take a -v and spit out some text including # the word 'GNU'. Some try to read stdin, so give them /dev/null. -if $AS -v </dev/null 2>&1 | grep -q GNU; then +if $AS -v </dev/null 2>&1 | grep GNU 2>&1 > /dev/null; then libc_cv_prog_as_gnu=yes else libc_cv_prog_as_gnu=no @@ -1563,7 +1563,7 @@ if eval "test \"`echo '$''{'libc_cv_prog_ld_gnu'+set}'`\" = set"; then else # Most GNU programs take a -v and spit out some text including # the word 'GNU'. Some try to read stdin, so give them /dev/null. -if $LD -v </dev/null 2>&1 | grep -q GNU; then +if $LD -v </dev/null 2>&1 | grep GNU 2>&1 > /dev/null; then libc_cv_prog_ld_gnu=yes else libc_cv_prog_ld_gnu=no |