X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/54ce51443886623bb785e7c54492ecbc8dc9b3aa..08e820f:/scripts/installation_check.pl diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 94751b961..df2ac3fac 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -202,25 +202,13 @@ sub kpsewhich { EOL } } -sub check_pdfinfo { - my $line = "Looking for pdfinfo executable"; - my $shell_out = `pdfinfo -v 2>&1 | grep version 2> /dev/null`; - my ($label,$vers,$ver_string) = split / /,$shell_out; - if ( $label && $label eq 'pdfinfo' ) { - print_line($line, $ver_string, 'green'); - } else { - print_line($line, 'not installed','red'); - my %modinfo = ( name => 'pdfinfo' ); - push @missing_modules, \%modinfo; - - } -} sub check_pdfinfo { my $line = "Looking for pdfinfo executable"; my $shell_out = `pdfinfo -v 2>&1 | grep version 2> /dev/null`; my ($label,$vers,$ver_string) = split / /,$shell_out; if ( $label && $label eq 'pdfinfo' ) { + chop $ver_string; print_line($line, $ver_string, 'green'); } else { print_line($line, 'not installed','red');