Browse Source

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

tags/n3.4
Diego Biurrun 9 years ago
parent
commit
8b56dbe743
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      configure

+ 2
- 2
configure View File

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