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/perlmodlib.PL | |
parent | 3d30f400ffa3ba459178d58c310b149a5cdf0861 (diff) | |
download | perl-b7da254d91daf34c2ec1b1f8cdcea45c11594cef.tar.gz |
Remove remaining references to mv-if-diff
p4raw-id: //depot/perl@25844
Diffstat (limited to 'pod/perlmodlib.PL')
-rw-r--r-- | pod/perlmodlib.PL | 4 |
1 files changed, 2 insertions, 2 deletions
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): $!"; |