make legal-info: fails with OVERRIDE_SRCDIR
There is a check for OVERRIDE_SRCDIR in pkg-generic.mk that is supposed to produce a warning when OVERRIDE_SRCDIR is active. This does not work and instead the whole make terminates with an error message. This patch changes the check for active OVERRIDE_SRCDIR so that it works as expected. Signed-off-by: Stephan Hoffmann <sho@relinux.de> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
907ff8983e
commit
7f77121fdd
@ -477,7 +477,7 @@ ifneq ($(call qstrip,$$($(2)_SOURCE)),)
|
||||
ifeq ($$($(2)_SITE_METHOD),local)
|
||||
# Packages without a tarball: don't save and warn
|
||||
@$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),local)
|
||||
else ifeq ($$($(2)_SITE_METHOD),override)
|
||||
else ifneq ($$($(2)_OVERRIDE_SRCDIR),)
|
||||
@$(call legal-warning-pkg-savednothing,$$($(2)_RAWNAME),override)
|
||||
else
|
||||
# Other packages
|
||||
|
Loading…
Reference in New Issue
Block a user