X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/e1d7dc4690ca23990c97c17909b07dfc0a6ab9bf..3c73035dcbdd5141987ef751d5172ddfd3d257ba:/scripts/installation_check.pl diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index c7a7cdc5a..6eca87189 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -10,7 +10,11 @@ use SL::InstallationCheck; $| = 1; foreach my $module (@SL::InstallationCheck::required_modules) { - print("Looking for $module->{name}..."); + if ($module->{version}) { + print("Looking for $module->{name} $module->{version}..."); + } else { + print("Looking for $module->{name}..."); + } if (!SL::InstallationCheck::module_available($module->{"name"})) { print(" NOT found\n" . " The module '$module->{name}' is not available on your system.\n" .