| Summary: | host-generic-package: PKG_DL_OPTS not used for host package | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | Matthias <porto.rio> |
| Component: | Other | Assignee: | Yann E. MORIN <yann.morin.1998> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | buildroot |
| Priority: | P5 | ||
| Version: | 2019.02.7 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
|
Description
Matthias
2019-11-18 15:44:13 UTC
Thanks Matthias for your bug report, and good catch! As you suggested, could you try applying a change like the below patch, and see if it helps? If it does, it would be nice if you could submit the patch on the Buildroot mailing list (if you don't want to do it, let us know, and we'll handle that). Thanks! diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk index 7d6fa08418..7b3294a09a 100644 --- a/package/pkg-generic.mk +++ b/package/pkg-generic.mk @@ -541,6 +541,12 @@ ifndef $(2)_SITE_METHOD endif endif +ifndef $(2)_DL_OPTS + ifdef $(3)_DL_OPTS + $(2)_DL_OPTS = $$($(3)_DL_OPTS) + endif +endif + ifneq ($$(filter bzr cvs hg svn,$$($(2)_SITE_METHOD)),) BR_NO_CHECK_HASH_FOR += $$($(2)_SOURCE) endif Hi Thomas, thanks for the quick reply. I tested the patch. It works perfectly. If it doesn't cause you any problems, it would be very nice if you could submit the patch, because I currently have not the right tools in place here (suitable E-Mail client...). Thank you! Kind regards, Matthias Thanks, I have submitted the patch at http://patchwork.ozlabs.org/patch/1202262/ |