Is it bad to install the mkta.pl file? or is it just harmless junk that
does not need to be there?
Gisle Aas wrote:
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.