[FFmpeg-cvslog] ffbuild: correctly silence and tag new css/html steps

Timo Rothenpieler git at videolan.org
Wed May 28 02:04:13 EEST 2025


ffmpeg | branch: master | Timo Rothenpieler <timo at rothenpieler.org> | Sat May 17 01:01:34 2025 +0200| [af943831248d135532e2ec620145e48f5263ca4e] | committer: softworkz

ffbuild: correctly silence and tag new css/html steps

Reviewed-by: softworkz <softworkz at hotmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=af943831248d135532e2ec620145e48f5263ca4e
---

 ffbuild/common.mak | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ffbuild/common.mak b/ffbuild/common.mak
index 1ac3c31c1e..ddf48923ea 100644
--- a/ffbuild/common.mak
+++ b/ffbuild/common.mak
@@ -140,9 +140,9 @@ else
 endif
 
 # 1) Preprocess CSS to a minified version
+%.css.min: TAG = SED
 %.css.min: %.css
-	# Must start with a tab in the real Makefile
-	sed 's!/\\*.*\\*/!!g' $< \
+	$(M)sed 's!/\\*.*\\*/!!g' $< \
 	| tr '\n' ' ' \
 	| tr -s ' ' \
 	| sed 's/^ //; s/ $$//' \
@@ -151,6 +151,7 @@ endif
 ifdef CONFIG_RESOURCE_COMPRESSION
 
 # 2) Gzip the minified CSS
+%.css.min.gz: TAG = GZIP
 %.css.min.gz: %.css.min
 	$(M)gzip -nc9 $< > $@
 
@@ -159,6 +160,7 @@ ifdef CONFIG_RESOURCE_COMPRESSION
 	$(BIN2C) $< $@ $(subst .,_,$(basename $(notdir $@)))
 
 # 4) Gzip the HTML file (no minification needed)
+%.html.gz: TAG = GZIP
 %.html.gz: %.html
 	$(M)gzip -nc9 $< > $@
 



More information about the ffmpeg-cvslog mailing list