diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-08-22 20:12:50 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2011-08-22 20:12:50 +0200 |
commit | 7a71a3d0986588d18850f144257764847e0f6973 (patch) | |
tree | 02a96650857c1539af949b2a0fd93bd5ae44ee1c /libavcodec | |
parent | 5b71ae2b653a48062c73530130d628f6225cf0cf (diff) | |
download | ffmpeg-7a71a3d0986588d18850f144257764847e0f6973.tar.gz |
codec_names: remove spaces in sed command.
Diffstat (limited to 'libavcodec')
-rwxr-xr-x | libavcodec/codec_names.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/codec_names.sh b/libavcodec/codec_names.sh index 4d86c197ec..167d29771e 100755 --- a/libavcodec/codec_names.sh +++ b/libavcodec/codec_names.sh @@ -79,7 +79,7 @@ parse_avcodec_h () { parse_config_h < "$config" parse_avcodec_h < "$codecs" -sed -e '/case.*:/ ! y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/' \ +sed -e '/case.*:/!y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/' \ -e 's/extern avcodec /extern AVCodec /' > "$out" <<EOF $outval EOF |