mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
fate: workaround for slighly broken 'test' shell builtin
Some shells, e.g. minix3, have a broken 'test' builtin which fails if the first operand of a binary operator looks like a unary operator. Prefixing the values with 'x' prevents this from happening. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
c15fea7933
commit
da025d115a
@ -78,7 +78,7 @@ avconv(){
|
|||||||
dec_opts="-threads $threads -thread_type $thread_type"
|
dec_opts="-threads $threads -thread_type $thread_type"
|
||||||
avconv_args="-nostats -cpuflags $cpuflags"
|
avconv_args="-nostats -cpuflags $cpuflags"
|
||||||
for arg in $@; do
|
for arg in $@; do
|
||||||
[ ${arg} = -i ] && avconv_args="${avconv_args} ${dec_opts}"
|
[ x${arg} = x-i ] && avconv_args="${avconv_args} ${dec_opts}"
|
||||||
avconv_args="${avconv_args} ${arg}"
|
avconv_args="${avconv_args} ${arg}"
|
||||||
done
|
done
|
||||||
run avconv ${avconv_args}
|
run avconv ${avconv_args}
|
||||||
|
Loading…
Reference in New Issue
Block a user