From: Perl 5 Porters Date: Mon, 24 Jun 1996 03:08:25 +0000 (+0000) Subject: Insure that installed C header files are world-readable X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f13cebb0cc38fcf4045cd5bc221d09dd45bbfeeb;p=p5sagit%2Fp5-mst-13.2.git Insure that installed C header files are world-readable --- diff --git a/installperl b/installperl index 3b4f5c2..bf8e692 100755 --- a/installperl +++ b/installperl @@ -177,6 +177,7 @@ else { mkpath("$installarchlib/CORE", 1, 0777); foreach $file (<*.h libperl*.*>) { cp_if_diff($file,"$installarchlib/CORE/$file"); + &chmod(0444,"$installarchlib/CORE/$file"); } # AIX needs perl.exp installed as well. cp_if_diff("perl.exp" ,"$installarchlib/CORE/perl.exp") if ($^O eq 'aix');