From: Yann E. MORIN Date: Wed, 2 May 2018 19:50:38 +0000 (+0200) Subject: core/pkg-infra: check for an SCM in the correct variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e85734709e0da78cc399c1b85655528e2d5f209;p=buildroot.git core/pkg-infra: check for an SCM in the correct variable The site method is stored in FOO_SITE_METHOD, not in FOO_SITE. Fixes: http://autobuild.buildroot.net/results/131/13196dd779bc9e3b172c74851546dd4c4752aa02/ [Peter: add autobuilder reference] Reported-by: Peter Korsgaard Signed-off-by: "Yann E. MORIN" Cc: Peter Korsgaard Cc: Thomas Petazzoni Cc: Ricardo Martincoski Cc: Maxime Hadjinlian Signed-off-by: Peter Korsgaard --- diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk index e9ee88882c..a303dc2e07 100644 --- a/package/pkg-generic.mk +++ b/package/pkg-generic.mk @@ -483,7 +483,7 @@ ifndef $(2)_PATCH endif endif -ifneq ($$(filter bzr cvs hg svn,$$($(2)_SITE)),) +ifneq ($$(filter bzr cvs hg svn,$$($(2)_SITE_METHOD)),) BR_NO_CHECK_HASH_FOR += $$($(2)_SOURCE) endif