summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-01-14 15:18:51 +0000
committermarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-01-14 15:18:51 +0000
commitb2ccc60ebc6e1d9ccfb4dd5bf20f63504056b0c8 (patch)
tree039ee5e569bd6748f6e96eb84695a9017eeb4593 /Makefile
parent059152f874db7f1f7c071429feed00808db12f1e (diff)
Quicky DYNFS fix
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@556 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fc814f0..a0e479c 100755
--- a/Makefile
+++ b/Makefile
@@ -43,11 +43,11 @@ MODCONF=$(shell if [ -d $(ROOT_PREFIX)/etc/modprobe.d ]; then echo "$(ROOT_PREFI
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