Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
CPAN /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
scripts
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
Makefile
28.86
KB
-rw-r--r--
2016-10-10 17:36
Makefile.PL
1.54
KB
-rw-r--r--
2016-10-10 17:36
PAUSE2003.pub
1.71
KB
-r--r--r--
2014-12-27 11:48
PAUSE2005.pub
2.68
KB
-r--r--r--
2014-12-27 11:48
PAUSE2007.pub
3.69
KB
-r--r--r--
2014-12-27 11:48
PAUSE2009.pub
4.71
KB
-r--r--r--
2014-12-27 11:48
PAUSE2011.pub
10.9
KB
-r--r--r--
2014-12-27 11:48
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:36
Save
Rename
#-*- buffer-read-only: t -*- # This Makefile.PL was written by make_ext.pl. # It will be deleted automatically by make realclean use strict; use ExtUtils::MakeMaker; # This is what the .PL extracts to. Not the ultimate file that is installed. # (ie Win32 runs pl2bat after this) # Doing this here avoids all sort of quoting issues that would come from # attempting to write out perl source with literals to generate the arrays and # hash. my @temps = 'Makefile.PL'; foreach (glob('scripts/pod*.PL')) { # The various pod*.PL extractors change directory. Doing that with relative # paths in @INC breaks. It seems the lesser of two evils to copy (to avoid) # the chdir doing anything, than to attempt to convert lib paths to # absolute, and potentially run into problems with quoting special # characters in the path to our build dir (such as spaces) require File::Copy; my $temp = $_; $temp =~ s!scripts/!!; File::Copy::copy($_, $temp) or die "Can't copy $temp to $_: $!"; push @temps, $temp; } my $script_ext = $^O eq 'VMS' ? '.com' : ''; my %pod_scripts; foreach (glob('pod*.PL')) { my $script = $_; s/.PL$/$script_ext/i; $pod_scripts{$script} = $_; } my @exe_files = values %pod_scripts; WriteMakefile( NAME => 'CPAN', VERSION_FROM => 'lib/CPAN.pm', ABSTRACT_FROM => 'lib/CPAN.pm', realclean => { FILES => "@temps" }, (%pod_scripts ? ( PL_FILES => \%pod_scripts, EXE_FILES => \@exe_files, clean => { FILES => "@exe_files" }, ) : ()), ); # ex: set ro: