1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-04 15:49:42 +02:00

Redirect stdin to /dev/null. Otherwise, FreeBSD 5.0's getfacl would hang.

This commit is contained in:
Jim Meyering
2006-01-13 13:38:39 +00:00
parent 153a886d6d
commit 583cd919cc
+2 -1
View File
@@ -1,4 +1,5 @@
getfacl --version 2> /dev/null 1>&2 && setfacl --version 2> /dev/null 1>&2 || {
getfacl --version < /dev/null 2> /dev/null 1>&2 \
&& setfacl --version < /dev/null 2> /dev/null 1>&2 || {
cat <<EOF 1>&2
**************************************
$0: This test requires getfacl and setfacl.