diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-28 00:07:33 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-28 00:07:33 +0000 |
commit | f7f713ed45383cfc8868c7c7e610ab988a7e0815 (patch) | |
tree | 71238971c612a4b8ae114fc9ecc945721c2a37b7 /Porting/makerel | |
parent | 0cb9638729211ea71a75ae8756c03ba21553bd53 (diff) | |
download | perl-f7f713ed45383cfc8868c7c7e610ab988a7e0815.tar.gz |
make autogenerated files writable
p4raw-id: //depot/perl@3557
Diffstat (limited to 'Porting/makerel')
-rw-r--r-- | Porting/makerel | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Porting/makerel b/Porting/makerel index 46f88fb0fb..ea99c67a69 100644 --- a/Porting/makerel +++ b/Porting/makerel @@ -106,6 +106,27 @@ my @exe = qw( ); system("chmod +x @exe"); +my @writables = qw( + embed.h + embedvar.h + ext/B/B/Asmdata.pm + ext/ByteLoader/byterun.c + ext/ByteLoader/byterun.h + global.sym + keywords.h + lib/warning.pm + objXSUB.h + opcode.h + pp.sym + pp_proto.h + regnodes.h + warning.h + win32/config_H.bc + win32/config_h.gc + win32/config_H.vc +); +system("chmod +w @writables"); + print "Adding CRs to DOSish files...\n"; my @crlf = qw( djgpp/configure.bat |