(AT_INIT): Don't assume /dev/null is readable; it's not true in OS/2-emx.

This commit is contained in:
Paul Eggert 2004-09-05 22:26:41 +00:00
parent dbb795cbe4
commit 31d84d895a

View File

@ -567,7 +567,7 @@ if diff /dev/null /dev/null >/dev/null 2>&1; then
at_devnull=/dev/null
else
at_devnull=$at_suite_dir/devnull
cp /dev/null "$at_devnull"
>"$at_devnull"
fi
# Use `diff -u' when possible.