X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Finstallation_check.pl;h=140ecddc036e932664feb587165fc595630deda0;hb=1edebcf0aed748b75fa68e46aad70dbeeadfdd85;hp=48d78eaf5cce9f2172cb635c4d6f4f56857adea1;hpb=28ef3d6c70c5f45344ce1b4a40950fcbadc6acdc;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 48d78eaf5..140ecddc0 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -179,10 +179,10 @@ sub kpsewhich { $package =~ s/[^-_0-9A-Za-z]//g; my $type_desc = $type eq 'cls' ? 'document class' : 'package'; - eval { use String::ShellQuote; 1 } or warn "can't load String::ShellQuote" && return; - $dw = shell_quote $dw; - my $e_package = shell_quote $package; - my $e_type = shell_quote $type; + eval { require String::ShellQuote; 1 } or warn "can't load String::ShellQuote" && return; + $dw = String::ShellQuote::shell_quote $dw; + my $e_package = String::ShellQuote::shell_quote $package; + my $e_type = String::ShellQuote::shell_quote $type; my $exit = system(qq|TEXINPUTS=".:$dw:" kpsewhich $e_package.$e_type > /dev/null|); my $res = $exit > 0 ? 0 : 1;