Skip to content

Commit 0c1d4c3

Browse files
vmikloscaolanm
authored andcommitted
automake silent rules: handle create-sbom.py
Similar to commit cffb277 (automake silent rules: handle build-samples.py, 2025-03-06), so 'make V=1' shows the full output and it's more compact in the --enable-silent-rules case. Signed-off-by: Miklos Vajna <[email protected]> Change-Id: I1cc0a92d218cdcde36a70f6c06367a26a1e09d8f
1 parent 60b85d8 commit 0c1d4c3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile.am

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,10 @@ QUIET_SAMPLES = $(QUIET_SAMPLES_$(V))
576576
QUIET_SAMPLES_ = $(QUIET_SAMPLES_$(AM_DEFAULT_VERBOSITY))
577577
QUIET_SAMPLES_0 = @echo " SAMPLES " $@;
578578

579+
QUIET_SBOM = $(QUIET_SBOM_$(V))
580+
QUIET_SBOM_ = $(QUIET_SBOM_$(AM_DEFAULT_VERBOSITY))
581+
QUIET_SBOM_0 = @echo " SBOM " $@;
582+
579583
setup-wsd: all @JAILS_PATH@ @CACHE_PATH@ presets-dir
580584
@echo "Launching coolwsd"
581585
@fc-cache "@LO_PATH@"/share/fonts/truetype
@@ -833,4 +837,4 @@ czech: check
833837
@echo "This should do something much cooler"
834838

835839
collabora-online-sbom.spdx.json: coolforkit-ns
836-
python3 $(abs_top_srcdir)/scripts/create-sbom.py $(abs_top_builddir)
840+
$(QUIET_SBOM) python3 $(abs_top_srcdir)/scripts/create-sbom.py $(abs_top_builddir)

0 commit comments

Comments
 (0)