Class-Default

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    use ${\__PACKAGE__};
 
END_DIE
}
 
# If the script that is loading Module::Install is from the future,
# then make will detect this and cause it to re-run over and over
# again. This is bad. Rather than taking action to touch it (which
# is unreliable on some platforms and requires write permissions)
# for now we should catch this and refuse to run.
if ( -f $0 and (stat($0))[9] > time ) {
        die << "END_DIE";
Your installer $0 has a modification time in the future.
 
This is known to create infinite loops in make.
 
Please correct this, then run $0 again.
 
END_DIE
}



( run in 1.147 second using v1.01-cache-2.11-cpan-49f99fa48dc )