summaryrefslogtreecommitdiffstats
path: root/perl-cpan
diff options
context:
space:
mode:
authorEric Sandall2018-03-06 18:28:21 -0800
committerEric Sandall2018-03-06 18:28:21 -0800
commit50697b746611e5707e830c2a80d6b5a3b30c5931 (patch)
tree874ae057d0b098ed11a7dc831281a09359261cd7 /perl-cpan
parent386c8849283ee4e6344d3c94850ab37d501b1bb1 (diff)
Add default_install_perl to work with make or Build.PL scripts
Override default_install in perl-cpan to use default_install_perl Fixes perl-error and module-build, for example.
Diffstat (limited to 'perl-cpan')
-rwxr-xr-xperl-cpan/FUNCTIONS4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-cpan/FUNCTIONS b/perl-cpan/FUNCTIONS
index ee673a9d1b..0f272cecf2 100755
--- a/perl-cpan/FUNCTIONS
+++ b/perl-cpan/FUNCTIONS
@@ -4,3 +4,7 @@
function default_build() {
PERL_MM_USE_DEFAULT=1 PERL_USE_UNSAFE_INC=1 default_build_perl
}
+
+function default_install() {
+ PERL_MM_USE_DEFAULT=1 PERL_USE_UNSAFE_INC=1 default_install_perl
+}