File: all_from.patch

package info (click to toggle)
libwww-search-perl 2.50.80-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,636 kB
  • sloc: perl: 9,723; sh: 132; makefile: 16
file content (27 lines) | stat: -rw-r--r-- 568 bytes parent folder | download
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
26
27
Author: Nicholas Bamber <nicholas@periapt.co.uk>
Subject: Makefile.PL was looking for version in AltaVista
 Turned off recursion
Forwarded: not-needed
Last-Updated: 2011-10-25
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,10 +3,10 @@
 
 use inc::Module::Install;
 
-# all_from('lib/WWW/Search.pm');
 version(2.508);
 perl_version(5.005);
 license('perl');
+all_from('lib/WWW/Search.pm');
 
 install_script('Programs/AutoSearch');
 install_script('Programs/WebSearch');
@@ -97,6 +97,7 @@
     } # if
   postamble $ret;
 
+makemaker_args(NORECURS=>1);
 WriteAll;
 
 __END__