diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-10-25 11:19:44 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-10-25 11:19:44 +0000 |
commit | b7da254d91daf34c2ec1b1f8cdcea45c11594cef (patch) | |
tree | 66cf59d4b2b8ff956674e16e1473b7d2502b06fe /pod | |
parent | 3d30f400ffa3ba459178d58c310b149a5cdf0861 (diff) | |
download | perl-b7da254d91daf34c2ec1b1f8cdcea45c11594cef.tar.gz |
Remove remaining references to mv-if-diff
p4raw-id: //depot/perl@25844
Diffstat (limited to 'pod')
-rw-r--r-- | pod/Makefile.SH | 5 | ||||
-rw-r--r-- | pod/perlmodlib.PL | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/pod/Makefile.SH b/pod/Makefile.SH index a1c6a33c03..46647781d9 100644 --- a/pod/Makefile.SH +++ b/pod/Makefile.SH @@ -154,10 +154,9 @@ podchecker: podchecker.PL ../lib/Config.pm podselect: podselect.PL ../lib/Config.pm $(PERL) -I ../lib podselect.PL -perlmodlib.pod: $(PERL) perlmodlib.PL ../mv-if-diff ../MANIFEST - rm -f perlmodlib.tmp +perlmodlib.pod: $(PERL) perlmodlib.PL ../MANIFEST + rm -f perlmodlib.pod $(PERL) -I ../lib perlmodlib.PL - sh ../mv-if-diff perlmodlib.tmp perlmodlib.pod compile: all $(REALPERL) -I../lib ../utils/perlcc -I .. -L .. -o pod2latex.exe pod2latex -log ../compilelog diff --git a/pod/perlmodlib.PL b/pod/perlmodlib.PL index d87785f506..969dde92f7 100644 --- a/pod/perlmodlib.PL +++ b/pod/perlmodlib.PL @@ -2,7 +2,7 @@ $ENV{LC_ALL} = 'C'; -open (OUT, ">perlmodlib.tmp") or die $!; +open (OUT, ">perlmodlib.pod") or die $!; my (@pragma, @mod, @MANIFEST); open (MANIFEST, "../MANIFEST") or die $!; @@ -1461,5 +1461,5 @@ you're redefining the world and willing to take the consequences. EOF close MANIFEST or warn "$0: failed to close MANIFEST (../MANIFEST): $!"; -close OUT or warn "$0: failed to close OUT (perlmodlib.tmp): $!"; +close OUT or warn "$0: failed to close OUT (perlmodlib.pod): $!"; |