From: Yann E. MORIN Date: Wed, 22 Apr 2015 22:08:39 +0000 (+0200) Subject: toolchain/external: ignore missing hash for custom downloaded toolchain X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dd05cfa3113ffd9542f7b0a2a1ee014a178dc1d1;p=buildroot.git toolchain/external: ignore missing hash for custom downloaded toolchain We will *always* be missing a hash file for custom external toolchains that are downloaded. So, just ignore that failure. Signed-off-by: "Yann E. MORIN" Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Cc: Thomas Petazzoni Cc: Gustavo Zacarias Acked-by: Arnout Vandecappelle (Essensium/Mind) Acked-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/toolchain/toolchain-external/toolchain-external.mk b/toolchain/toolchain-external/toolchain-external.mk index 11345cc47f..fd796a05b1 100644 --- a/toolchain/toolchain-external/toolchain-external.mk +++ b/toolchain/toolchain-external/toolchain-external.mk @@ -400,6 +400,8 @@ else # Custom toolchain TOOLCHAIN_EXTERNAL_SITE = $(dir $(call qstrip,$(BR2_TOOLCHAIN_EXTERNAL_URL))) TOOLCHAIN_EXTERNAL_SOURCE = $(notdir $(call qstrip,$(BR2_TOOLCHAIN_EXTERNAL_URL))) +# We can't check hashes for custom downloaded toolchains +BR_NO_CHECK_HASH_FOR += $(TOOLCHAIN_EXTERNAL_SOURCE) endif # In fact, we don't need to download the toolchain, since it is already