summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfile <file@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-10-11 17:27:07 +0000
committerfile <file@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-10-11 17:27:07 +0000
commit4d74c2de8e97feae057972fa5bc13340d3ca610b (patch)
treeaf50a762d9907867a338fe471904cd79078fa91a /Makefile
parentfe2d13f0684d8bb1cfd16d5ac6f9d3d171a16fe1 (diff)
Merged revisions 1500 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4 ................ r1500 | file | 2006-10-11 13:25:16 -0400 (Wed, 11 Oct 2006) | 10 lines Merged revisions 1499 via svnmerge from https://origsvn.digium.com/svn/zaptel/branches/1.2 ........ r1499 | file | 2006-10-11 13:22:10 -0400 (Wed, 11 Oct 2006) | 2 lines Copy to both directories, not just the first one. ........ ................ git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1501 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7aaae79..fb4da66 100644
--- a/Makefile
+++ b/Makefile
@@ -425,9 +425,10 @@ install-udev: devices
firmware:
ifeq ($(HOTPLUG_FIRMWARE),yes)
if [ -d $(INSTALL_PREFIX)/usr/lib/hotplug/firmware ]; then \
- install -m 644 wct4xxp/*.ima $(INSTALL_PREFIX)/usr/lib/hotplug/firmware; \
- elif [ -d $(INSTALL_PREFIX)/lib/firmware ]; then \
- install -m 644 wct4xxp/*.ima $(INSTALL_PREFIX)/lib/firmware; \
+ $(INSTALL) -m 644 wct4xxp/*.ima $(INSTALL_PREFIX)/usr/lib/hotplug/firmware; \
+ fi
+ if [ -d $(INSTALL_PREFIX)/lib/firmware ]; then \
+ $(INSTALL) -m 644 wct4xxp/*.ima $(INSTALL_PREFIX)/lib/firmware; \
fi
@echo "Installed firmware"
else