Show
Ignore:
Timestamp:
06/12/08 15:50:22 (4 months ago)
Author:
erickson
Message:

Merged revisions 9815-9816 via svnmerge from
svn://svn.open-ils.org/ILS/trunk

........

r9815 | erickson | 2008-06-11 12:13:11 -0400 (Wed, 11 Jun 2008) | 1 line


wrapping array items in quotes so empty chars will be valid stored proc array elements

........

r9816 | erickson | 2008-06-12 09:02:23 -0400 (Thu, 12 Jun 2008) | 1 line


warn if libdbi is not found by "locate"

........

Location:
branches/acq-experiment
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/acq-experiment

    • Property svnmerge-integrated changed from /trunk:1-9810 to /trunk:1-9816
  • branches/acq-experiment/Open-ILS/src/support-scripts/settings-tester.pl

    r9533 r9817  
    244244        my $results = ''; 
    245245        my @location = `locate libdbdpgsql.so | grep -v home | grep -v .libs`; # simple(ton) attempt to filter out build versions 
     246    unless(@location) { 
     247        my $res = "Libdbi postgres driver not found\n"; 
     248        print $res; 
     249        return $res; 
     250    } 
    246251        if (scalar(@location) > 1) { 
    247252