summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-03-21 20:40:15 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-03-21 20:40:15 +0000
commit0312e0586ab95e6ab9a4f18d6320a5c07061459a (patch)
treee7c7ef75dd8359027672d784250dece11f55515e /Makefile
parentebf3fb444a4fee34f43590dd15052d83554455a6 (diff)
the hotplug firmware detection logic got broken in r3969... this fixes it
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@4057 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 304bc75..4c0a85e 100644
--- a/Makefile
+++ b/Makefile
@@ -62,7 +62,7 @@ ifeq ($(BUILDVER),linux26)
UDEVRULES=yes
endif
ifeq (yes,$(HAS_KSRC))
- HOTPLUG_FIRMWARE:=$(shell if grep -q '^CONFIG_FW_LOADER=[ym]' $(KCONFIG); then echo "no"; else echo "yes"; fi)
+ HOTPLUG_FIRMWARE:=$(shell if grep -qv '^CONFIG_FW_LOADER=[ym]' $(KCONFIG); then echo "no"; else echo "yes"; fi)
endif
endif