configure: Do not add newlines in filter()/filter_out() functions

pull/139/merge
Diego Biurrun 8 years ago
parent 9254344e11
commit 8b56dbe743
  1. 4
      configure

4
configure vendored

@ -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
}

Loading…
Cancel
Save