Author: byterock
Date: Tue Feb 10 07:02:04 2009
New Revision: 12496

Modified:
   dbd-oracle/trunk/Makefile.PL

Log:
Quick fix on the Makefile.PL for a possible sql bug in IC from Martin J. Evans


Modified: dbd-oracle/trunk/Makefile.PL
==============================================================================
--- dbd-oracle/trunk/Makefile.PL        (original)
+++ dbd-oracle/trunk/Makefile.PL        Tue Feb 10 07:02:04 2009
@@ -1518,7 +1518,9 @@
        print FH "DEFINE _SQLPLUS_RELEASE\nQUIT\n";
        close FH;
        my $sqlplus_release = `$sqlplus_exe -S /nolog \[email protected] 2>&1`;
-       if ($sqlplus_release =~ /SP2-0750/) {
+       if ($sqlplus_release =~ /(SP2-0750)|(SP2-0642)/) {
+       
+
                        my $x = $ENV{ORACLE_HOME};
                        delete $ENV{ORACLE_HOME};
                        $sqlplus_release = `$sqlplus_exe -S /nolog 
\[email protected] 2>&1`;

Reply via email to