diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-19 15:52:40 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-19 15:52:40 +0000 |
commit | f6993412b760c236ac624b7f715a85e4c3f08be8 (patch) | |
tree | f4af696157569cdbdc2b715425864073aa744967 | |
parent | 9e5f164dc1ef90b08535db31370011af382429cc (diff) | |
download | ffmpeg-f6993412b760c236ac624b7f715a85e4c3f08be8.tar.gz |
configure: be more liberal with nm output
Originally committed as revision 21324 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2223,7 +2223,7 @@ enabled pic && enable_pic check_cc <<EOF || die "Symbol mangling check failed." int ff_extern; EOF -sym=$($nm -P -g $TMPO | grep ff_extern) +sym=$($nm -g $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^[:blank:]]*ff_extern/)) }') extern_prefix=${sym%%ff_extern*} check_cc <<EOF && enable inline_asm |