This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 91f8703536235790e9513bf6369d4b7f6c8871e1 Author: crueter <[email protected]> AuthorDate: Tue May 5 20:23:56 2026 -0400 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed May 20 01:07:24 2026 +0000 configure: prefer negative-or case for MSVC linker -L flags This is preferred over positive-and casing because it can mess with `set -e`. Signed-off-by: crueter <[email protected]> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 96bbeb372b..0f5773f649 100755 --- a/configure +++ b/configure @@ -5211,7 +5211,7 @@ msvc_common_flags(){ -lstdc++) ;; -l*) echo ${flag#-l}.lib ;; -LARGEADDRESSAWARE) echo $flag ;; - -L*) [ "$_flags_type" = "link" ] && echo -libpath:${flag#-L} ;; + -L*) [ "$_flags_type" != "link" ] || echo -libpath:${flag#-L} ;; -Wl,*) ;; *) echo $flag ;; esac _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
