From cf7f668ef177ffbb67ad0fb857fd86c74148ae60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Lewi=C5=84ski?= Date: Tue, 17 Mar 2026 08:12:55 +0100 Subject: [PATCH] src/sbom: guarantee left-to-right processing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream-Status: Pending Signed-off-by: Filip LewiƄski --- src/sbom/Makefile.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sbom/Makefile.mk b/src/sbom/Makefile.mk index fcc8c9071d..6a5cbdfc3d 100644 --- a/src/sbom/Makefile.mk +++ b/src/sbom/Makefile.mk @@ -132,7 +132,7 @@ endif ## Build final SBOM (Software Bill of Materials) file in uswid format -$(build-dir)/sbom.uswid: $(build-dir)/coreboot.json $$(swid-files-y) $(swid-files-compiler) | $(build-dir)/goswid $(build-dir) +$(build-dir)/sbom.uswid: $(build-dir)/coreboot.json $$(swid-files-y) $(swid-files-compiler) | $(build-dir)/goswid $(build-dir) sbom-acm-clean echo " SBOM " $^ $(build-dir)/goswid convert -o $@ \ --parent $(build-dir)/coreboot.json \ @@ -393,4 +393,4 @@ sbom-acm-clean: $(if $(CONFIG_SBOM_BIOS_ACM_GENERATE),rm -f $(build-dir)/intel-bios-acm.json,) $(if $(CONFIG_SBOM_SINIT_ACM_GENERATE),rm -f $(build-dir)/intel-sinit-acm.json,) -sbom: sbom-acm-clean $(build-dir)/sbom.uswid +sbom: $(build-dir)/sbom.uswid