This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 4552f31db8b72b90d140180c23db9375b843e9af Author: Kacper Michajłow <[email protected]> AuthorDate: Sun Jun 28 00:58:35 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Mon Jun 29 21:22:15 2026 +0000 ffbuild/common.mak: fix source path prefix stripping in INSTALL output Use $(SRC_PATH), the source tree root, for consistent repository-relative paths. SRC_DIR used before was undefined and this macro only stripped leading /. Signed-off-by: Kacper Michajłow <[email protected]> --- ffbuild/common.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffbuild/common.mak b/ffbuild/common.mak index 328d6df8d6..fb55fe78b7 100644 --- a/ffbuild/common.mak +++ b/ffbuild/common.mak @@ -27,7 +27,7 @@ M = @$(call ECHO,$(TAG),$@); $(foreach VAR,$(BRIEF), \ $(eval override $(VAR) = @$$(call ECHO,$(VAR),$$(MSG)); $($(VAR)))) $(foreach VAR,$(SILENT),$(eval override $(VAR) = @$($(VAR)))) -$(eval INSTALL = @$(call ECHO,INSTALL,$$(^:$(SRC_DIR)/%=%)); $(INSTALL)) +$(eval INSTALL = @$(call ECHO,INSTALL,$$(^:$(SRC_PATH)/%=%)); $(INSTALL)) endif # Prepend to a recursively expanded variable without making it simply expanded. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
