Update of /cvsroot/lastbash/lastbash
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv24099
Modified Files:
lastbash
Log Message:
Fixed the mkfifo detection.
Index: lastbash
===================================================================
RCS file: /cvsroot/lastbash/lastbash/lastbash,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -d -r1.90 -r1.91
--- lastbash 7 Dec 2006 22:47:24 -0000 1.90
+++ lastbash 8 Dec 2006 12:14:38 -0000 1.91
@@ -1560,9 +1560,10 @@
# Return if no player is to be used
[ "${USE_PLAYER}" == "y" ] || return
- if type -t mkfifo >/dev/null 2>&1
+ if ! type -t mkfifo >/dev/null 2>&1
then
debug "No way to control the player, mkfifo is absent"
+ USE_PLAYER="n"
return
fi
|