mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-30 22:50:48 +00:00
configure: Do not add newlines in filter()/filter_out() functions
This commit is contained in:
parent
9254344e11
commit
8b56dbe743
4
configure
vendored
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…
Reference in New Issue
Block a user