From 7f77121fdde5a0c16d9b6968c71e982d3e953d25 Mon Sep 17 00:00:00 2001 From: Stephan Hoffmann Date: Mon, 3 Dec 2012 00:05:51 +0000 Subject: 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 Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- package/pkg-generic.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/pkg-generic.mk') diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk index 6fcd359ee..fc05dc66b 100644 --- a/package/pkg-generic.mk +++ b/package/pkg-generic.mk @@ -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 -- cgit v1.2.3