This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/6.1 in repository ffmpeg.
commit 113c5262868d156eccff804e8e29b3f7e9aded9e Author: Marvin Scholz <[email protected]> AuthorDate: Thu Sep 19 22:22:46 2024 +0200 Commit: Michael Niedermayer <[email protected]> CommitDate: Sat Jun 20 17:42:28 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 40fa7693d8..3c39ff399e 100755 --- a/configure +++ b/configure @@ -5989,7 +5989,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]
