summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfile <file@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-07-16 00:16:13 +0000
committerfile <file@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-07-16 00:16:13 +0000
commit1e361139f997d23cf7b6b425603be7050e02a27f (patch)
treebdae4061a0c3231364ba8646ea9906d70d2dd561 /Makefile
parentd0119472f3ce3ee970b43e090bcd4478e1fab764 (diff)
Minor Makefile adjustment for installing the firmware
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@1236 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 869c15f..aa7114a 100644
--- a/Makefile
+++ b/Makefile
@@ -372,9 +372,9 @@ install-udev: devices
firmware:
ifeq ($(HOTPLUG_FIRMWARE),yes)
if [ -d /usr/lib/hotplug/firmware ]; then \
- install -D -m 644 *.ima /usr/lib/hotplug/firmware ; \
+ install -m 644 *.ima /usr/lib/hotplug/firmware; \
elif [ -d /lib/firmware ]; then \
- install -D -m 644 *.ima /lib/firmware ; \
+ install -m 644 *.ima /lib/firmware; \
fi
@echo "Installed firmware"
else