X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1e768ce8b2a4316532896bbd8068aa84b0729829..b75c6cbb82023b0d6:/scripts/installation_check.pl diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 47be40d64..6f92bba69 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -179,7 +179,7 @@ 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; + eval { require 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; @@ -212,7 +212,7 @@ sub check_pdfinfo { print_line($line, $ver_string, 'green'); } else { print_line($line, 'not installed','red'); - my %modinfo = ( name => 'pdfinfo' ); + my %modinfo = ( debian => 'poppler-utils' ); push @missing_modules, \%modinfo; }