[Asterisk-cvs] zaptel Makefile,1.63,1.64

markster at lists.digium.com markster at lists.digium.com
Fri Jan 14 09:15:02 CST 2005


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

Modified Files:
	Makefile 
Log Message:
Quicky DYNFS fix


Index: Makefile
===================================================================
RCS file: /usr/cvsroot/zaptel/Makefile,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- Makefile	11 Jan 2005 02:33:08 -0000	1.63
+++ Makefile	14 Jan 2005 15:18:51 -0000	1.64
@@ -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