From: miker Date: Thu, 1 Nov 2007 23:27:56 +0000 (+0000) Subject: wording update, and naive attempt to filter build versions of libdbi-drivers X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ebddb7b4dee786a6dea66cf6633723400fb8c5c2;p=Evergreen.git wording update, and naive attempt to filter build versions of libdbi-drivers git-svn-id: svn://svn.open-ils.org/ILS/trunk@7966 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/support-scripts/settings-tester.pl b/Open-ILS/src/support-scripts/settings-tester.pl index 6dd362ac9f..a9e01b5af7 100755 --- a/Open-ILS/src/support-scripts/settings-tester.pl +++ b/Open-ILS/src/support-scripts/settings-tester.pl @@ -134,7 +134,7 @@ foreach my $driver_node (@drivers) { if ($language eq "perl") { $result = "* OK: $driver language is $language in $lang_xpath\n"; } elsif ($driver_xpath =~ /reporter/) { - $result = "* OK: $driver language is allowed to be undefined for reporter application\n"; + $result = "* OK: $driver language is undefined for reporter base configuration\n"; } else { $result = "* ERROR: $driver language is $language in $lang_xpath\n"; warn $result; @@ -190,7 +190,7 @@ sub test_db_connect { sub check_libdbd { my $results; my $de = undef; - my @location = `locate libdbdpgsql.so`; + my @location = `locate libdbdpgsql.so |grep -v home`; # simple(ton) attempt to filter out build versions if (scalar(@location) > 1) { my $res = "Found more than one location for libdbdpgsql.so. @@ -202,7 +202,7 @@ sub check_libdbd { foreach my $loc (@location) { my @linkage = `ldd $loc`; if (!grep(/libdbi/, @linkage)) { - my $res = "libdbi.so was not linked against $loc - you probably need to compile from source.\n"; + my $res = "$loc was not linked against libdbi - you probably need to compile libdbi-drivers from source with the --enable-libdbi configure switch.\n"; $results .= $res; print $res; }