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