~ubuntu-branches/ubuntu/quantal/libclass-accessor-grouped-perl/quantal

« back to all changes in this revision

Viewing changes to inc/Module/Install/Makefile.pm

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2011-12-27 23:40:16 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20111227234016-30xyr31tnvd9sa9g
Tags: 0.10005-1
* New upstream release.
* Bump version of libclass-xsaccessor-perl in B-D-I and Recommends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
use vars qw{$VERSION @ISA $ISCORE};
10
10
BEGIN {
11
 
        $VERSION = '1.04';
 
11
        $VERSION = '1.03';
12
12
        @ISA     = 'Module::Install::Base';
13
13
        $ISCORE  = 1;
14
14
}
219
219
                # an underscore, even though its own version may contain one!
220
220
                # Hence the funny regexp to get rid of it.  See RT #35800
221
221
                # for details.
222
 
                my ($v) = $ExtUtils::MakeMaker::VERSION =~ /^(\d+\.\d+)/;
 
222
                my $v = $ExtUtils::MakeMaker::VERSION =~ /^(\d+\.\d+)/;
223
223
                $self->build_requires(     'ExtUtils::MakeMaker' => $v );
224
224
                $self->configure_requires( 'ExtUtils::MakeMaker' => $v );
225
225
        } else {
226
226
                # Allow legacy-compatibility with 5.005 by depending on the
227
227
                # most recent EU:MM that supported 5.005.
228
 
                $self->build_requires(     'ExtUtils::MakeMaker' => 6.36 );
229
 
                $self->configure_requires( 'ExtUtils::MakeMaker' => 6.36 );
 
228
                $self->build_requires(     'ExtUtils::MakeMaker' => 6.42 );
 
229
                $self->configure_requires( 'ExtUtils::MakeMaker' => 6.42 );
230
230
        }
231
231
 
232
232
        # Generate the MakeMaker params
241
241
'all_from' if you prefer) in Makefile.PL.
242
242
EOT
243
243
 
 
244
        $DB::single = 1;
244
245
        if ( $self->tests ) {
245
246
                my @tests = split ' ', $self->tests;
246
247
                my %seen;
411
412
 
412
413
__END__
413
414
 
414
 
#line 540
 
415
#line 541