Browse Source

codec_names: remove spaces in sed command.

Nicolas George 13 years ago
parent
commit
7a71a3d098
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavcodec/codec_names.sh

+ 1 - 1
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