This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit cbdbb07900aa545ebab95310a61db402a970e697 Author: Kacper Michajłow <[email protected]> AuthorDate: Sun Jun 28 00:26:54 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Mon Jun 29 21:22:15 2026 +0000 Makefile: hide verbose command from linking step They are part of LD(XX) step, and shouldn't be shown if verbose output is not enabled. Signed-off-by: Kacper Michajłow <[email protected]> --- ffbuild/library.mak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffbuild/library.mak b/ffbuild/library.mak index 4614b98167..89908d247e 100644 --- a/ffbuild/library.mak +++ b/ffbuild/library.mak @@ -93,13 +93,13 @@ else $(Q)echo $$(filter %.o,$$^) > [email protected] endif endif - $(SLIB_CREATE_DEF_CMD) + $(Q)$(SLIB_CREATE_DEF_CMD) ifeq ($(RESPONSE_FILES),yes) $$(call LINK,$$(call $(NAME)LINK_SO_ARGS) $$(LD_O) @[email protected] $$(call $(NAME)LINK_EXTRA)) else $$(call LINK,$$(call $(NAME)LINK_SO_ARGS) $$(LD_O) $$(filter %.o,$$^) $$(call $(NAME)LINK_EXTRA)) endif - $(SLIB_EXTRA_CMD) + $(Q)$(SLIB_EXTRA_CMD) -$(RM) [email protected] ifdef SUBDIR _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
