From: Nicholas Clark Date: Sat, 13 Jun 2009 13:05:26 +0000 (+0100) Subject: Remove autodoc.pl from regen.pl and the lists of regenerated files in Makefiles. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=22b7b87b206c3e0cdcc9f4c2f5fba2da95e75c95;p=p5sagit%2Fp5-mst-13.2.git Remove autodoc.pl from regen.pl and the lists of regenerated files in Makefiles. Should really have been done as part of 344af494c35a9f0f50dab51474b2e7cd806f1b08 --- diff --git a/Cross/Makefile-cross-SH b/Cross/Makefile-cross-SH index 9a52de5..616607d 100755 --- a/Cross/Makefile-cross-SH +++ b/Cross/Makefile-cross-SH @@ -869,7 +869,6 @@ SYMH = perlvars.h intrpvar.h CHMOD_W = chmod +w # The following files are generated automatically -# autodoc.pl: pod/perlapi.pod pod/perlintern.pod # embed.pl: proto.h embed.h embedvar.h global.sym # perlapi.h perlapi.c # [* embed.pl needs pp.sym generated by opcode.pl! *] @@ -886,7 +885,6 @@ CHMOD_W = chmod +w AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \ embed.h embedvar.h global.sym \ - pod/perlintern.pod pod/perlapi.pod \ perlapi.h perlapi.c regnodes.h \ warnings.h lib/warnings.pm diff --git a/Makefile.SH b/Makefile.SH index e39c399..9f37133 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -1091,7 +1091,6 @@ SYMH = perlvars.h intrpvar.h CHMOD_W = chmod +w # The following files are generated automatically -# autodoc.pl: pod/perlapi.pod pod/perlintern.pod # embed.pl: proto.h embed.h embedvar.h global.sym # perlapi.h perlapi.c # [* embed.pl needs pp.sym generated by opcode.pl! *] @@ -1108,7 +1107,6 @@ CHMOD_W = chmod +w AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \ embed.h embedvar.h global.sym \ - pod/perlintern.pod pod/perlapi.pod \ perlapi.h perlapi.c regnodes.h \ warnings.h lib/warnings.pm diff --git a/regen.pl b/regen.pl index 37057f6..75903ac 100644 --- a/regen.pl +++ b/regen.pl @@ -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]],