@@ -, +, @@ -x 'help'-f pay.tt - ./translate update fr-FR -f pay.tt - put a warn at LangInstaller.pm line 375. - 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. - apply this patch and verify the output and the execution time is now correct. --- 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 : '' ) } --