Bug 21480: misc/translator/translate does not work with perl 5.26
authorOlli-Antti Kivilahti <olli-antti.kivilahti@helsinki.fi>
Wed, 3 Oct 2018 08:24:38 +0000 (11:24 +0300)
committerNick Clemens <nick@bywatersolutions.com>
Wed, 3 Oct 2018 17:33:37 +0000 (17:33 +0000)
commit8aa86cdf2d5e0dbda7d21394e52f37ba17a8064c
treef7d78d23036cca6555966563e9c5847b45b5c25d
parentb4d8d13f14a7022e603ac30dd8cee0605e9d269d
Bug 21480: misc/translator/translate does not work with perl 5.26

Perl 5.26 (or earlier) introduced a security feature, where implicitly
including the program directory as a Perl library directory no longer
happens (perl -I. ).

This causes translate to fail because it cannot find the *.pm -files in
it's own directory.

This patch adds the familiar mantra
    use lib $FindBin::Bin;
to the relevant scripts.

To test:

1. Install Ubuntu18.04 or something else with Perl 5.26
2. Install Koha (we use the dev-install)
3. cd $KOHA_PATH/misc/translator/
4. perl translate create fi-FI
5. Observe problems with missing modules.

Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Cannot recreate the issue right now but the changes make sense.

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
misc/translator/text-extract.pl
misc/translator/text-extract2.pl
misc/translator/tmpl_process3.pl
misc/translator/translate
misc/translator/xgettext.pl