diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-25 01:39:11 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-25 01:39:11 +0000 |
commit | e619572c8f75ed22ba00524dbaf68d2a8a101d09 (patch) | |
tree | a4c6ffc74c2d064b312ef7b2745517dfdef39978 /Porting | |
parent | 8fc0601bc9618b91ff3fad7f8ebdaea0ddc2fb2f (diff) | |
download | perl-e619572c8f75ed22ba00524dbaf68d2a8a101d09.tar.gz |
More +x.
p4raw-id: //depot/perl@11468
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/makerel | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Porting/makerel b/Porting/makerel index 4c50085995..23c629008d 100644 --- a/Porting/makerel +++ b/Porting/makerel @@ -80,7 +80,8 @@ chdir "$relroot/$reldir" or die $!; print "Setting file permissions...\n"; 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"); +system("find t ext lib -name '*.t' -print | xargs chmod +x"); +system("find t ext lib -name 'test.pl' -print | xargs chmod +x"); my @exe = qw( Configure configpm @@ -91,13 +92,14 @@ my @exe = qw( opcode.pl perly.fixer t/TEST - t/*/*.t *.SH vms/ext/Stdio/test.pl vms/ext/filespec.t x2p/*.SH Porting/patchls Porting/makerel + mpeix/nm + mpeix/relink ); system("chmod +x @exe"); |