Do not mask Makefile.PL errors in END block
[dbsrgits/DBIx-Class.git] / maint / Makefile.PL.inc / 54_autogen_inherited_pod.pl
1 # generate the inherit pods as both a clone-dir step, and a makefile distdir step
2
3 print "Regenerating project documentation to include inherited methods\n";
4 # if the author doesn't have them, don't fail the initial "perl Makefile.pl" step
5 do "maint/gen_pod_inherit" or print "\n!!! FAILED: $@\n";
6
7 postamble <<"EOP";
8
9 .PHONY: dbic_clonedir_gen_inherit_pods
10
11 create_distdir : dbic_clonedir_gen_inherit_pods
12
13 dbic_clonedir_gen_inherit_pods :
14 \t\$(ABSPERL) maint/gen_pod_inherit
15
16 EOP
17
18 # keep the Makefile.PL eval happy
19 1;