mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 05:36:32 +00:00
legal info: fix saving of host package licenses
Due to some tricky make behavior, the license texts of host packages that did not provide an explicit HOST_FOO_LICENSE_FILES definition was not saved. The problem is that it is not straightforward to use a variable defined/updated inside an evaluated block as input to a foreach statement. If you try to use $(FOO) then only the original value of FOO is used for foreach, any update inside the block is ignored. However, if you use $$(FOO), the entire contents of FOO (typically a list of items) is passed as one item to foreach, thus causing just one iteration instead of several. >From Arnout Vandecapelle's explanation: Any variable referenced with a single $ inside the inner-generic-package macro is expanded before the resulting contents are eval'ed. Therefore, it is not possible to refer to variables defined by the inner-generic-package macro from within a single-$ function call. To fix the problem, one should defer the evaluation of the entire block using double dollar signs. Additionally, a few empty lines have been added to the legal-info-foo block for clarity. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Tested-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
7a7ec2dd37
commit
003d38da3a
@ -502,26 +502,35 @@ $(2)_MANIFEST_TARBALL ?= not saved
|
|||||||
$(1)-legal-info:
|
$(1)-legal-info:
|
||||||
# Packages without a source are assumed to be part of Buildroot, skip them.
|
# Packages without a source are assumed to be part of Buildroot, skip them.
|
||||||
ifneq ($(call qstrip,$$($(2)_SOURCE)),)
|
ifneq ($(call qstrip,$$($(2)_SOURCE)),)
|
||||||
|
|
||||||
ifeq ($$($(2)_SITE_METHOD),local)
|
ifeq ($$($(2)_SITE_METHOD),local)
|
||||||
# Packages without a tarball: don't save and warn
|
# Packages without a tarball: don't save and warn
|
||||||
@$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),local)
|
@$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),local)
|
||||||
|
|
||||||
else ifneq ($$($(2)_OVERRIDE_SRCDIR),)
|
else ifneq ($$($(2)_OVERRIDE_SRCDIR),)
|
||||||
@$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),override)
|
@$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),override)
|
||||||
|
|
||||||
else
|
else
|
||||||
# Other packages
|
# Other packages
|
||||||
|
|
||||||
# Save license files if defined
|
# Save license files if defined
|
||||||
ifeq ($(call qstrip,$$($(2)_LICENSE_FILES)),)
|
ifeq ($(call qstrip,$$($(2)_LICENSE_FILES)),)
|
||||||
@$(call legal-license-nofiles,$$($(2)_RAWNAME))
|
@$(call legal-license-nofiles,$$($(2)_RAWNAME))
|
||||||
@$(call legal-warning-pkg,$$($(2)_RAWNAME),cannot save license ($(2)_LICENSE_FILES not defined))
|
@$(call legal-warning-pkg,$$($(2)_RAWNAME),cannot save license ($(2)_LICENSE_FILES not defined))
|
||||||
else
|
else
|
||||||
@$(foreach F,$($(2)_LICENSE_FILES),$(call legal-license-file,$$($(2)_RAWNAME),$(F),$$($(2)_DIR)/$(F))$$(sep))
|
# Double dollar signs are really needed here, to catch host packages
|
||||||
endif
|
# without explicit HOST_FOO_LICENSE_FILES assignment, also in case they
|
||||||
|
# have multiple license files.
|
||||||
|
@$$(foreach F,$$($(2)_LICENSE_FILES),$$(call legal-license-file,$$($(2)_RAWNAME),$$(F),$$($(2)_DIR)/$$(F))$$(sep))
|
||||||
|
endif # license files
|
||||||
|
|
||||||
ifeq ($$($(2)_REDISTRIBUTE),YES)
|
ifeq ($$($(2)_REDISTRIBUTE),YES)
|
||||||
# Copy the source tarball (just hardlink if possible)
|
# Copy the source tarball (just hardlink if possible)
|
||||||
@cp -l $(DL_DIR)/$$($(2)_SOURCE) $(REDIST_SOURCES_DIR) 2>/dev/null || \
|
@cp -l $(DL_DIR)/$$($(2)_SOURCE) $(REDIST_SOURCES_DIR) 2>/dev/null || \
|
||||||
cp $(DL_DIR)/$$($(2)_SOURCE) $(REDIST_SOURCES_DIR)
|
cp $(DL_DIR)/$$($(2)_SOURCE) $(REDIST_SOURCES_DIR)
|
||||||
endif
|
endif # redistribute
|
||||||
endif
|
|
||||||
|
endif # other packages
|
||||||
@$(call legal-manifest,$$($(2)_RAWNAME),$$($(2)_VERSION),$$($(2)_LICENSE),$$($(2)_MANIFEST_LICENSE_FILES),$$($(2)_MANIFEST_TARBALL))
|
@$(call legal-manifest,$$($(2)_RAWNAME),$$($(2)_VERSION),$$($(2)_LICENSE),$$($(2)_MANIFEST_LICENSE_FILES),$$($(2)_MANIFEST_TARBALL))
|
||||||
endif # ifneq ($(call qstrip,$$($(2)_SOURCE)),)
|
endif # ifneq ($(call qstrip,$$($(2)_SOURCE)),)
|
||||||
$(foreach hook,$($(2)_POST_LEGAL_INFO_HOOKS),$(call $(hook))$(sep))
|
$(foreach hook,$($(2)_POST_LEGAL_INFO_HOOKS),$(call $(hook))$(sep))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user