Instead of testing if /dev/zero is a file, just check if it is readable. Bug #16942 r=granrose (Where are the automated configure checkins?)

This commit is contained in:
cls%seawood.org 1999-12-05 06:16:51 +00:00
Родитель 30e40a0eee
Коммит 9f000be7b0
1 изменённых файлов: 1 добавлений и 1 удалений

2
configure поставляемый
Просмотреть файл

@ -8140,7 +8140,7 @@ EOF
echo "$ac_t""yes" 1>&6
else
if test -f /dev/zero; then
if test -r /dev/zero; then
cat >> confdefs.h <<\EOF
#define HAVE_DEV_ZERO 1
EOF