From: Diego Biurrun Date: Wed, 9 Nov 2016 23:07:06 +0000 (+0100) Subject: configure: Do not add newlines in filter()/filter_out() functions X-Git-Tag: n3.4~95^2~345 X-Git-Url: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=8b56dbe7435d8cfe3964f447fc45fe98db5d9042 configure: Do not add newlines in filter()/filter_out() functions --- diff --git a/configure b/configure index c01996aebe..e5a9b969cb 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 }