git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9254344
)
configure: Do not add newlines in filter()/filter_out() functions
author
Diego Biurrun
<diego@biurrun.de>
Wed, 9 Nov 2016 23:07:06 +0000
(
00:07
+0100)
committer
Diego Biurrun
<diego@biurrun.de>
Tue, 29 Nov 2016 17:43:05 +0000
(18:43 +0100)
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index
c01996a
..
e5a9b96
100755
(executable)
--- 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
}