line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
# $Id: Make.pm,v 1.16 2009/04/21 22:21:53 Martin Exp $ |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
=head1 NAME |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
Devel::Fail::Make - a distro that always fails the `make` stage |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 SYNOPSIS |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Empty module |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 DESCRIPTION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
This dummy/empty module exists only so that it gets indexed in the CPAN module list. |
15
|
|
|
|
|
|
|
This distribution exists only for testing automatic installers such as cpan and cpanp. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 LICENSE |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
This software is released under the same license as Perl itself. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 AUTHOR |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Martin Thurn |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
package Devel::Fail::Make; |
28
|
|
|
|
|
|
|
|
29
|
1
|
|
|
1
|
|
5231
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
207
|
|
30
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
96
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
my |
33
|
|
|
|
|
|
|
$VERSION = do { my @r = (q$Revision: 1.16 $ =~ /\d+/g); sprintf "%d."."%03d" x $#r, @r }; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
1; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
__END__ |