summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsruffell <sruffell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-04-10 21:01:59 +0000
committersruffell <sruffell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-04-10 21:01:59 +0000
commit752cdab6380dd4fdff979255e9d0bcd8695299ed (patch)
treedfb57fb82f152642761901f73288fc9106478b11 /Makefile
parentf167b5a9d29f491ab60ce1f54a387a2d5eb09d03 (diff)
Fixed typo in makefile which was preventing make from installing the udev rules.
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@4167 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ed66b39..8409a03 100644
--- a/Makefile
+++ b/Makefile
@@ -504,11 +504,11 @@ ifneq (yes,$(DYNFS))
N=$$[$$N+1]; \
done
else # DYNFS
- ifneq (yes,$(UDEVRULES))
+ ifneq (yes,$(UDEVRULES)) #!UDEVRULES
+ @echo "**** Dynamic filesystem detected -- not creating device nodes"
+ else # UDEVRULES
install -d $(DESTDIR)/etc/udev/rules.d
build_tools/genudevrules > $(DESTDIR)/etc/udev/rules.d/zaptel.rules
- else # !UDEVRULES
- @echo "**** Dynamic filesystem detected -- not creating device nodes"
endif
endif