ffmpeg | branch: master | Diego Biurrun <[email protected]> | Thu Nov 10 00:07:06 2016 +0100| [8b56dbe7435d8cfe3964f447fc45fe98db5d9042] | committer: Diego Biurrun
configure: Do not add newlines in filter()/filter_out() functions > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b56dbe7435d8cfe3964f447fc45fe98db5d9042 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index c01996a..e5a9b96 100755 --- a/configure +++ b/configure @@ -429,7 +429,7 @@ filter(){ pat=$1 shift for v; do - eval "case $v in $pat) echo $v ;; esac" + eval "case $v in $pat) printf '%s ' $v ;; esac" done } @@ -437,7 +437,7 @@ filter_out(){ pat=$1 shift for v; do - eval "case $v in $pat) ;; *) echo $v ;; esac" + eval "case $v in $pat) ;; *) printf '%s ' $v ;; esac" done } _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
