Author: byterock
Date: Fri Oct 24 17:54:33 2008
New Revision: 12002
Modified:
dbd-oracle/trunk/Changes
dbd-oracle/trunk/Makefile.PL
Log:
Fix for rt.cpan.org Ticket #=39374 Makefile.PL: error when reducing echo
messages from make from Tippa
Modified: dbd-oracle/trunk/Changes
==============================================================================
--- dbd-oracle/trunk/Changes (original)
+++ dbd-oracle/trunk/Changes Fri Oct 24 17:54:33 2008
@@ -1,4 +1,5 @@
=head1 Changes in DBD-Oracle 1.23(svn rev #####)
+ Fix for rt.cpan.org Ticket #=39374 Makefile.PL: error when reducing echo
messages from make from Tippa
Fix for rt.cpan.org Ticket #=39232 binding large XMLTYPE fails on 64-bit
perl from Jeff Klein
Fix for rt.cpan.org Ticket #=38749 Warning of a NULL column in an aggregate
function also added ora_oci_success_warn to display silent OCI warnings from
John Scoles
Patch for UTF8 check on execute_array from David Mansfield and a little by
John Scoles
Modified: dbd-oracle/trunk/Makefile.PL
==============================================================================
--- dbd-oracle/trunk/Makefile.PL (original)
+++ dbd-oracle/trunk/Makefile.PL Fri Oct 24 17:54:33 2008
@@ -441,7 +441,8 @@
# remove any echo's as the following line should be the result of
the echo
next if $line =~ /^\s*\S*echo\s+/;
next if $line =~ /^\s*\S*make\s+/; # remove recursive calls to make
- next if $line =~ /^\s*\S*make:/; # remove message from make
+ next if $line =~ /^\s*\S*make(\[\d\])?:/; # remove message rom
"make:" or "make[x]:"
+
next if $line =~ /^\s*$/; # remove any blank lines
push @filtered_cmds, $line;
}