summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-04-16 08:02:20 +0000
committerrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-04-16 08:02:20 +0000
commit89e4f3aba9cb6aa838785f28f74b4bfc21ba8353 (patch)
tree87dd24188b2e6be65bd0c82ba11a53f432837070 /Makefile
parentca085ed203b2a760feb3aaafaae1d5615f5564e7 (diff)
fix a problem that prevented the zaptel device nodes from being created
on systems that were not using udev. This problem only existed in the trunk, not 1.2. (issue #6965) git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1003 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8cd9c9a..45f2259 100644
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,7 @@ endif
# version that we runs. If we build for 2.4 using 2.4 headers on a 2.6
# system with udev mounted on /dev , no point in installing files to /dev
# because they'll be wiped at next reboot.
-DYNFS=$(shell ps ax | grep -v grep | grep -qw 'devfsd\|udevd' && echo "yes")
+DYNFS:=$(shell ps ax | grep -v grep | grep -qw 'devfsd\|udevd' && echo "yes")
# Check for udev permissions directories
ifneq (,$(wildcard $(ROOT_PREFIX)/etc/udev/rules.d))