diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-06-13 14:05:26 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-06-13 14:08:11 +0100 |
commit | 22b7b87b206c3e0cdcc9f4c2f5fba2da95e75c95 (patch) | |
tree | 65ce582213cce8983d55d2115efa51f14f5def62 /regen.pl | |
parent | 1e2f36ef3d3f4de76635fcfba782b45ccf3fc578 (diff) | |
download | perl-22b7b87b206c3e0cdcc9f4c2f5fba2da95e75c95.tar.gz |
Remove autodoc.pl from regen.pl and the lists of regenerated files in Makefiles.
Should really have been done as part of 344af494c35a9f0f50dab51474b2e7cd806f1b08
Diffstat (limited to 'regen.pl')
-rw-r--r-- | regen.pl | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -19,9 +19,7 @@ my $perl = $^X; # safer_unlink ("warnings.h", "lib/warnings.pm"); # Which scripts to run. Note the ordering: embed.pl must run after -# opcode.pl, since it depends on pp.sym, and autodoc.pl should run last as -# it reads all *.[ch] files, some of which may have been changed by other -# scripts (eg reentr.c) +# opcode.pl, since it depends on pp.sym my @scripts = qw( keywords.pl @@ -32,7 +30,6 @@ regcomp.pl warnings.pl embed.pl -autodoc.pl ); # Which files are (re)generated by each script. @@ -40,7 +37,6 @@ autodoc.pl # now generated by regen_lib.pl, so should we just drop them? my %gen = ( - 'autodoc.pl' => [qw[pod/perlapi.pod pod/perlintern.pod]], 'embed.pl' => [qw[proto.h embed.h embedvar.h global.sym perlapi.h perlapi.c]], 'keywords.pl' => [qw[keywords.h]], |