diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
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 |