Re: ANNOUNCE: DBD::Oracle 1.22 Release Candidate 2
Gisle Aas <[email protected]>
| Newsgroups | gmane.comp.lang.perl.modules.dbi.sybase.devel |
|---|---|
| Message-ID | <[email protected]> |
Can I suggest that you apply the following patch? The goal is to
prevent the installation of the lib/DBD/mkta.pl file.
--Gisle
Index: Makefile.PL
--- Makefile.PL.~1~ Mon Jul 28 13:53:45 2008
+++ Makefile.PL Mon Jul 28 13:53:45 2008
@@ -1613,6 +1613,13 @@
use Config;
+ sub libscan {
+ my($self, $path) = @_;
+ return '' if $path =~ m/\.pl$/;
+ $path;
+ }
+
+
sub post_initialize {
my $self = shift;
End of Patch.