Summary: | DAHLIN-00326: dahdi-linux-complete-2.7.0+2.7.0 make fails with wget error | ||
Reporter: | Duncan Roe (duncan_roe) | Labels: | |
Date Opened: | 2013-08-15 00:38:50 | Date Closed: | 2013-08-16 10:32:40 |
Priority: | Major | Regression? | |
Status: | Closed/Complete | Components: | dahdi (the module) |
Versions: | 2.7.0 | Frequency of Occurrence | Constant |
Related Issues: | |||
Environment: | Fresh Slackware 14.0 upgrade plus linux-3.10.4 | Attachments: | |
Description: | 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. | ||
Comments: | By: Russ Meyerriecks (rmeyerriecks) 2013-08-15 10:32:39.131-0500 Could you paste the error message with make here? Also, what version of wget are you using? By: Duncan Roe (duncan_roe) 2013-08-15 21:01:23.204-0500 This is very strange. It was happening on Monday 0730 UTC and now it is not. I have no explanation for this, and I did not keep any files showing the error. Might as well close it I guess. (wget is GNU Wget 1.14 built on linux-gnu). By: Russ Meyerriecks (rmeyerriecks) 2013-08-16 10:32:40.896-0500 Checked the server logs, no apparent failure during the mentioned timeframe. Also no configuration changes on the server either. Keep an eye on it and if you happen to catch it again, please feel free to re-open this issue. Thanks for your report! |