This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit c1d4fe8b44d54f962434814e78839f74e6e3c626 Author: Ramiro Polla <[email protected]> AuthorDate: Thu Apr 9 17:48:07 2026 +0200 Commit: Ramiro Polla <[email protected]> CommitDate: Mon Apr 13 12:46:49 2026 +0000 configure: fix html docs generation when makeinfo is disabled The makeinfo_html variable wasn't being disabled when the makeinfo test failed, which prevented texi2html from being probed. Fixes 589da160b2. Found-by: Luke Jolliffe <[email protected]> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3d7ce32d87..40aa64f413 100755 --- a/configure +++ b/configure @@ -7626,7 +7626,7 @@ enabled schannel && enabled schannel && check_cc dtls_protocol "windows.h security.h schnlsp.h" "int i = SECPKG_ATTR_DTLS_MTU;" -DSECURITY_WIN32 -$makeinfo --version > /dev/null 2>&1 && enable makeinfo_command || disable makeinfo_command +$makeinfo --version > /dev/null 2>&1 && enable makeinfo_command || disable makeinfo_command makeinfo_html if enabled makeinfo_command; then [ 0$($makeinfo --version | grep "texinfo" | sed 's/.*texinfo[^0-9]*\([0-9]*\)\..*/\1/') -ge 5 ] \ && enable makeinfo_html || disable makeinfo_html _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
