From: Guillaume Pellerin Date: Mon, 20 May 2013 20:00:13 +0000 (+0200) Subject: fix mlt fix path X-Git-Tag: 1.4.5~17^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=efde74eea0348182f6c22dbc29e00684fda7c2a6;p=telemeta.git fix mlt fix path --- diff --git a/telemeta/util/kdenlive/mlt_fix_threads.sh b/telemeta/util/kdenlive/mlt_fix_threads.sh index 3870e5bd..28bd0ad9 100755 --- a/telemeta/util/kdenlive/mlt_fix_threads.sh +++ b/telemeta/util/kdenlive/mlt_fix_threads.sh @@ -1,7 +1,7 @@ #!/bin/sh for file in `ls $1/*.sh`; do -perl -pi -e 's/threads=2/threads=8/g' $1/$file -perl -pi -e 's/threads=4/threads=8/g' $1/$file -perl -pi -e 's/threads=6/threads=8/g' $1/$file +perl -pi -e 's/threads=2/threads=8/g' $file +perl -pi -e 's/threads=4/threads=8/g' $file +perl -pi -e 's/threads=6/threads=8/g' $file done