~ubuntu-branches/ubuntu/trusty/pdl/trusty-proposed

« back to all changes in this revision

Viewing changes to Basic/Pod/Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2009-12-05 12:37:41 UTC
  • mfrom: (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091205123741-ilqkc9s4zlk71z13
Tags: 1:2.4.5+dfsg-2ubuntu1
* Merge from debian testing (LP: #492898), remaining changes:
  - debian/perldl.conf: Enabled NAN support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  my $text = '';
37
37
  eval 'require Pod::Select';
38
38
  if (!$@ && $] >= 5.005 ) {
39
 
    $text .= << 'EOT';
40
 
 
41
 
PP-Inline.pod: ../Gen/Inline/Pdlpp.pm
42
 
        podselect ../Gen/Inline/Pdlpp.pm > PP-Inline.pod
43
 
 
44
 
EOT
 
39
     $text .= $^O !~ /MSWin32/i ? "
 
40
 
 
41
PP-Inline.pod: ../Gen/Inline/Pdlpp.pm
 
42
\tPERL5OPT='' podselect ../Gen/Inline/Pdlpp.pm > PP-Inline.pod
 
43
 
 
44
"
 
45
: "
 
46
 
 
47
PP-Inline.pod: ../Gen/Inline/Pdlpp.pm
 
48
\tpodselect ../Gen/Inline/Pdlpp.pm > PP-Inline.pod
 
49
 
 
50
"
45
51
  }
46
52
  $text;
47
53
}