Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the DBD-Oracle CPAN distribution.

Report information
The Basics
Id: 39374
Status: resolved
Priority: 0/
Queue: DBD-Oracle

People
Owner: Nobody in particular
Requestors: tippa123 [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.22
Fixed in: 1.23



Subject: [PATCH] Makefile.PL: error when reducing echo messages from make
Hi, it takes whole day to figure out why I do not get DBD-Oracle 1.22 working. I have master makefile which calls shell script, which have commands to create DBD-Oracle Makefile, build and install it. The problem was that the "Makefile.PL" did not correctly "reduce" make program echo messages: only messages starting "make:" are taken away but not messages like "make[2]:". This is of course Oracle version or architecture independent issue. Here is the patch for Makefile.PL (just one line): 444c444 < next if $line =~ /^\s*\S*make:/; # remove message from make --- Show quoted text
> next if $line =~ /^\s*\S*make(\[\d\])?:/; # remove message
from "make:" or "make[x]:" Regards Tippa
Patch applied tested and committed to svn. You can find the changes at http://svn.perl.org/modules/dbd-oracle/trunk This patch will be in the next version