Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -83,7 +83,15 @@ define legal-manifest # pkg, version, license, license-files, source, url, {HOST
|
||||
echo '"$(1)","$(2)","$(3)","$(4)","$(5)","$(6)"' >>$(LEGAL_MANIFEST_CSV_$(7))
|
||||
endef
|
||||
|
||||
define legal-license-file # pkg, filename, file-fullpath, {HOST|TARGET}
|
||||
mkdir -p $(LICENSE_FILES_DIR_$(4))/$(1)/$(dir $(2)) && \
|
||||
cp $(3) $(LICENSE_FILES_DIR_$(4))/$(1)/$(2)
|
||||
define legal-license-file # pkgname, pkgname-pkgver, pkgdir, filename, file-fullpath, {HOST|TARGET}
|
||||
mkdir -p $(LICENSE_FILES_DIR_$(6))/$(2)/$(dir $(4)) && \
|
||||
{ \
|
||||
if [ -f $(3)/$($(PKG)_VERSION)/$(1).hash ]; then \
|
||||
support/download/check-hash $(3)/$($(PKG)_VERSION)/$(1).hash $(5) $(4); \
|
||||
else \
|
||||
support/download/check-hash $(3)/$(1).hash $(5) $(4); \
|
||||
fi; \
|
||||
case $${?} in (0|3) ;; (*) exit 1;; esac; \
|
||||
} && \
|
||||
cp $(5) $(LICENSE_FILES_DIR_$(6))/$(2)/$(4)
|
||||
endef
|
||||
|
||||
Reference in New Issue
Block a user