@@ -, +, @@ -x 'help'-f pay.tt -- note the execution time and the output. The options in the command contain "-x 'help'-f pay.tt" The -f param is not passed to the script. The execution time is strangely long. -- verify the output and the execution time is now corrected. --- misc/translator/LangInstaller.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/misc/translator/LangInstaller.pm +++ a/misc/translator/LangInstaller.pm @@ -349,7 +349,7 @@ sub install_tmpl { "-s $self->{path_po}/$self->{lang}$trans->{suffix} -r $excludes" . ( @$files - ? '-f ' . join ' -f ', @$files + ? ' -f ' . join ' -f ', @$files : '' ) } @@ -378,7 +378,7 @@ sub update_tmpl { "-s $self->{path_po}/$self->{lang}$trans->{suffix} -r $excludes" . ( @$files - ? '-f ' . join ' -f ', @$files + ? ' -f ' . join ' -f ', @$files : '' ) } @@ -417,7 +417,7 @@ sub create_tmpl { "-s $self->{path_po}/$self->{lang}$trans->{suffix} -r $excludes" . ( @$files - ? '-f ' . join ' -f ', @$files + ? ' -f ' . join ' -f ', @$files : '' ) } --