[asterisk-bugs] [JIRA] (DAHLIN-326) dahdi-linux-complete-2.7.0+2.7.0 make fails with wget error
Duncan Roe (JIRA)
noreply at issues.asterisk.org
Thu Aug 15 00:39:04 CDT 2013
Duncan Roe created DAHLIN-326:
---------------------------------
Summary: dahdi-linux-complete-2.7.0+2.7.0 make fails with wget error
Key: DAHLIN-326
URL: https://issues.asterisk.org/jira/browse/DAHLIN-326
Project: DAHDI-Linux
Issue Type: Bug
Security Level: None
Components: dahdi (the module)
Affects Versions: 2.7.0
Environment: Fresh Slackware 14.0 upgrade plus linux-3.10.4
Reporter: Duncan Roe
Assignee: Russ Meyerriecks
wget by default creates a directory tree to match the fetched URL but Makefile looks for file in current directory. Adding -nd arg to wget fixes problem as per patch below
--- linux/drivers/dahdi/firmware/Makefile.bu 2013-06-08 05:29:39.000000000 +1000
+++ linux/drivers/dahdi/firmware/Makefile 2013-08-13 12:39:03.000000000 +1000
@@ -68,7 +68,7 @@
OBJECT_FILES:=$(OBJECT_FILES:FIRMWARE-VPMOCT032=dahdi-fw-vpmoct032.o)
# Force usage of wget, for now
-DOWNLOAD=wget
+DOWNLOAD=wget -nd
WGET=wget
# If "fetch" is used, --continue is not a valid option.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.asterisk.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the asterisk-bugs
mailing list