configure: do not use interval regexp operators with awk

Some awk implementations like mawk (used on Ubuntu) do not support
these.
This commit is contained in:
Marvin Scholz 2024-09-19 22:22:46 +02:00
parent ed633a1312
commit 4858a8ee2f

2
configure vendored
View file

@ -6152,7 +6152,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}'"