This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/4.4 in repository ffmpeg.
commit 9e357486d1eeb16df18c3f82b6d23c6551fa43e0 Author: Marvin Scholz <[email protected]> AuthorDate: Thu Sep 19 22:22:46 2024 +0200 Commit: Michael Niedermayer <[email protected]> CommitDate: Sun Jun 21 17:59:33 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 40c5574e38..e5bd6bc8cf 100755 --- a/configure +++ b/configure @@ -5762,7 +5762,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]
