1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: Use the system Module::Install distribution
Author: Nick Morrott <nickm@debian.org>
Forwarded: not-needed
Last-Update: 2020-08-27
---
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,7 +1,5 @@
# This -*- cperl -*- program writes the Makefile for WWW::Search
-use lib '.';
-
use inc::Module::Install;
version(2.519);
--- a/ebay/Makefile.PL
+++ b/ebay/Makefile.PL
@@ -1,6 +1,6 @@
use inc::Module::Install;
-include 'Module::AutoInstall';
+use Module::AutoInstall;
version(3.056);
all_from('lib/WWW/Search/Ebay.pm');
|