This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/5.1 in repository ffmpeg.
commit 3a66f856c6eea75ece7a66059c4d40cb594eac4e Author: Marvin Scholz <[email protected]> AuthorDate: Thu Sep 19 22:22:46 2024 +0200 Commit: Michael Niedermayer <[email protected]> CommitDate: Sun Jun 21 02:56:27 2026 +0200 configure: do not use interval regexp operators with awk Some awk implementations like mawk (used on Ubuntu) do not support these. (cherry picked from commit 4858a8ee2fc0ebc2aeab5185939d4bf93930f2d8) Signed-off-by: Michael Niedermayer <[email protected]> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index e40eba4d9b..db8b953375 100755 --- a/configure +++ b/configure @@ -5888,7 +5888,7 @@ enabled pic && enable_weak_pic test_cc <<EOF || die "Symbol mangling check failed." int ff_extern; EOF -sym=$($nm $TMPO | awk '/[ \t]+[^ \t]{0,1}ff_extern$/{ print substr($0, match($0, /[^ \t]{0,1}ff_extern$/)) }') +sym=$($nm $TMPO | awk '/[ \t]+[^ \t]?ff_extern$/{ print substr($0, match($0, /[^ \t]?ff_extern$/)) }') extern_prefix=${sym%%ff_extern*} log "Symbol prefix detected as: '${extern_prefix}'" _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
