diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-10 17:49:35 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-10 17:49:35 +0000 |
commit | 933fea7ffa6c794a1a2b8e713eb2b30851598bc8 (patch) | |
tree | f90e88b4e5daecb28dda82759223d272f14525dc /djgpp/djgppsed.sh | |
parent | 54a137f5a208ce9a432cfbce29ffe72d9e61bfe9 (diff) | |
download | perl-933fea7ffa6c794a1a2b8e713eb2b30851598bc8.tar.gz |
dos-djgpp update (from Laszlo Molnar <laszlo.molnar@eth.ericsson.se>)
p4raw-id: //depot/perl@4121
Diffstat (limited to 'djgpp/djgppsed.sh')
-rw-r--r-- | djgpp/djgppsed.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/djgpp/djgppsed.sh b/djgpp/djgppsed.sh index 5276f4f67f..a25e894157 100644 --- a/djgpp/djgppsed.sh +++ b/djgpp/djgppsed.sh @@ -17,13 +17,15 @@ SCOR='s=c\\\.c|=c\_c|=g' SHSED='s=\.\(hsed\)=_\1=g' SDEPTMP='s=\.\(deptmp\)=_\1=g' SCPP='s=\.\(cpp\.\)=_\1=g' -SARGV='s=\.\(argv\.\)=_\1=g' +SARGV='s=\.\(argv\)\.=_\1_=g' SABC='s=\.\([abc][^a]\)=_\1=g' SDBMX='s=\.\(dbmx\)=_\1=g' SDBHASH='s=dbhash\.tmp=dbhash_tmp=g' SSTAT='s=\.\(stat\.\)=_\1=g' STMP2='s=tmp2=tm2=g' SPACKLIST='s=\.\(packlist\)=_\1=g' +SDEFSUB='s=defsubs\.h=defsubsh=g' +SPLPLI='s=PL/;=PL/i;=g' sed -e $SCONFIG -e $SGREPTMP -e $SECHOTMP -e $SDDC -e $SOUT -e 's=\.\( \./\$file\)$=sh\1=g' Configure |tr -d '\r' >s; mv -f s Configure sed -e $SEXISTS -e $SLIST -e $SCONFIG Makefile.SH |tr -d '\r' >s; mv -f s Makefile.SH @@ -47,3 +49,6 @@ sed -e $SPACKLIST lib/ExtUtils/Installed.pm >s; mv -f s lib/ExtUtils/Installed.p sed -e $SPACKLIST lib/ExtUtils/Packlist.pm >s; mv -f s lib/ExtUtils/Packlist.pm sed -e $SPACKLIST lib/ExtUtils/inst >s; mv -f s lib/ExtUtils/inst sed -e $SABC t/io/iprefix.t >s; mv -f s t/io/iprefix.t +sed -e $SDEFSUB ext/B/Makefile.PL >s; mv -f s ext/B/Makefile.PL +sed -e $SDEFSUB ext/B/B.xs >s; mv -f s ext/B/B.xs +sed -e $SDEFSUB -e $SPLPLI ext/B/defsubsh.PL >s; mv -f s ext/B/defsubsh.PL |