summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-03-11 00:00:40 +0000
committerUlrich Drepper <drepper@redhat.com>1998-03-11 00:00:40 +0000
commit7559b94331de6615ae2a2312f3f7efa4cc46a4c3 (patch)
treed9cb58da3b50a03bb9d40718c3f7ca9da73ea0ac /configure
parentfe848e93865384db7457d3b01aad298a6f785be7 (diff)
downloadglibc-7559b94331de6615ae2a2312f3f7efa4cc46a4c3.tar.gz
Regenerated.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 7beb9592a6..ef9431df25 100755
--- a/configure
+++ b/configure
@@ -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