diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-06-24 03:08:25 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-06-24 03:08:25 +0000 |
commit | f13cebb0cc38fcf4045cd5bc221d09dd45bbfeeb (patch) | |
tree | 3c2c589b266d5dc2a985e0c6968524cbbd53c53e /installperl | |
parent | cee5ebb5fd9b3bed7994e2b13a764cb9ab6f0c10 (diff) | |
download | perl-f13cebb0cc38fcf4045cd5bc221d09dd45bbfeeb.tar.gz |
Insure that installed C header files are world-readable
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/installperl b/installperl index 3b4f5c255b..bf8e6927ea 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'); |