From: Bernd Bleßmann Date: Tue, 9 May 2017 21:51:27 +0000 (+0200) Subject: installation_check: doppelte sub "check_pdfinfo" entfernt X-Git-Tag: release-3.5.4~1096 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=5a9adcc5f18c0e487ccba4d7c30cd022e7de4ecc;p=kivitendo-erp.git installation_check: doppelte sub "check_pdfinfo" entfernt --- diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 94751b961..2535a2c37 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -202,19 +202,6 @@ 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";