[Asterisk-cvs] zaptel Makefile,1.52.2.5,1.52.2.6

russell at lists.digium.com russell at lists.digium.com
Sun Jan 16 18:54:36 CST 2005


Update of /usr/cvsroot/zaptel
In directory mongoose.digium.com:/tmp/cvs-serv23866

Modified Files:
      Tag: v1-0
	Makefile 
Log Message:
set DYNFS correctly (bug #3323)


Index: Makefile
===================================================================
RCS file: /usr/cvsroot/zaptel/Makefile,v
retrieving revision 1.52.2.5
retrieving revision 1.52.2.6
diff -u -d -r1.52.2.5 -r1.52.2.6
--- Makefile	26 Dec 2004 23:59:53 -0000	1.52.2.5
+++ Makefile	17 Jan 2005 00:57:59 -0000	1.52.2.6
@@ -43,11 +43,11 @@
 
 ifeq (${BUILDVER},linux24)
 #We only support DEVFS in linux 2.4 kernels, since its considered obsolete post 2.4
-DYNFS=$(shell ps ax | grep -v grep | grep devfsd)
+DYNFS=$(shell ps ax | grep -v grep | grep -q devfsd && echo "yes")
 endif
 ifeq (${BUILDVER},linux26)
 #Tests for newer linux-2.6 udev support
-DYNFS=$(shell ps ax | grep -v grep | grep udevd)
+DYNFS=$(shell ps ax | grep -v grep | grep udevd && echo "yes")
 endif
 
 




More information about the svn-commits mailing list