From eb878e7a06c35035045289e74742370ca7e4c1c6 Mon Sep 17 00:00:00 2001 From: jkeil Date: Tue, 6 Nov 2001 16:56:27 +0000 Subject: [PATCH] dvb test, /dev/ost/video: Check for character device (-c) instead of file existance (-e), the -e test is not available on solaris' /bin/sh. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2744 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index d0deb7541c..fa03e705ff 100755 --- a/configure +++ b/configure @@ -681,7 +681,7 @@ if test -c /dev/mga_vid ; then _syncfb=yes fi -if test -e /dev/ost/video ; then +if test -c /dev/ost/video ; then _dvb=yes fi