diff options
author | 俞晓磊 <elioxia@gmail.com> | 2013-10-19 00:07:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-19 00:15:33 +0200 |
commit | 4bfdd021c71b221530c89c89260973df7b517e93 (patch) | |
tree | cc8ee585f59234ea42920da8a83f5566cecaec0d | |
parent | f5695926235c9b2a60af07b21c2d6f1db990cc2a (diff) | |
download | ffmpeg-4bfdd021c71b221530c89c89260973df7b517e93.tar.gz |
configure: remove \r from cc_ident,
This should fix cygwin + non-cygwin toolchain
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -424,7 +424,7 @@ sh_quote(){ } cleanws(){ - echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//' + echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//;s/\r//g' } filter(){ |