From 02798cfa76dfba6938eb350a1f9eb2bef6df8a5f Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 13 Dec 2020 14:59:28 +0100 Subject: [PATCH] core/pkg-infra: allow per site-method sub-version strings When we want to change the format of an archive we generate (e.g. those we generate from git trees), the hashes of those archives will change. To avoid any issue (e.g. an older Buildroot using newer archives, or the other way around) that would conclude that the hashes do not match, we want to change the filenames of the generated archives whenever we change their format. Introduce a new internal variable, specific to each site method, that we can set to include a "format version" for the archives generated from that site method. Signed-off-by: Yann E. MORIN Cc: Thomas Petazzoni Cc: Vincent Fazio Acked-by: Arnout Vandecappelle (Essensium/Mind) Reviewed-by: Vincent Fazio --- package/pkg-utils.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/pkg-utils.mk b/package/pkg-utils.mk index c7597a3a45..11090cb628 100644 --- a/package/pkg-utils.mk +++ b/package/pkg-utils.mk @@ -43,7 +43,7 @@ pkgname = $(lastword $(subst /, ,$(pkgdir))) # Helper to build the extension for a package archive, based on various # conditions. # $(1): upper-case package name -pkg_source_ext = .tar.gz +pkg_source_ext = $(BR_FMT_VERSION_$($(1)_SITE_METHOD)).tar.gz # Define extractors for different archive suffixes INFLATE.bz2 = $(BZCAT) -- 2.30.2