diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-02 01:53:51 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-05-02 01:53:51 +0000 |
commit | bf955a65cd064b7cb8fd747aa8770e1f7698536a (patch) | |
tree | 081d9ac34157f4d5c8449e6ffbe0ea5f3e404940 /Porting | |
parent | cb150fad868cc8f5a0f053338e30fad0ce84b0dc (diff) | |
download | perl-bf955a65cd064b7cb8fd747aa8770e1f7698536a.tar.gz |
cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
to compensate
p4raw-id: //depot/perl@6041
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/makerel | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/makerel b/Porting/makerel index 4b8c277ebd..8341690701 100644 --- a/Porting/makerel +++ b/Porting/makerel @@ -78,8 +78,8 @@ print "\n"; chdir "$relroot/$reldir" or die $!; print "Setting file permissions...\n"; -system("find . -type f -print | xargs chmod -w"); -system("find . -type d -print | xargs chmod g-s"); +system("find . -type f -print | xargs chmod 0444"); +system("find . -type d -print | xargs chmod 0755"); system("find t -name '*.t' -print | xargs chmod +x"); my @exe = qw( Configure |