summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorLeam Hall <leamhall@gmail.com>2021-06-24 14:10:21 -0500
committerKarl Williamson <khw@cpan.org>2021-06-24 15:01:05 -0700
commit830a95d37441e49ba2b159b1ae187f1f873a1424 (patch)
tree906baf26c241f15eed0262a9c1cb51273a8d3e15 /pod
parentbab878b7c36409112093f401c0778c29f87a5399 (diff)
downloadperl-830a95d37441e49ba2b159b1ae187f1f873a1424.tar.gz
perlnewmod.pod: Remove dead link and make a header line stand out more.
Diffstat (limited to 'pod')
-rw-r--r--pod/perlnewmod.pod7
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perlnewmod.pod b/pod/perlnewmod.pod
index 48003e6ad6..ca3dd5c7ce 100644
--- a/pod/perlnewmod.pod
+++ b/pod/perlnewmod.pod
@@ -237,12 +237,14 @@ Every developer publishing modules on CPAN needs a CPAN ID. Visit
C<L<http://pause.perl.org/>>, select "Request PAUSE Account", and wait for
your request to be approved by the PAUSE administrators.
-=item C<perl Makefile.PL; make test; make distcheck; make dist>
+=item Make the tarball
Once again, C<module-starter> or C<h2xs> has done all the work for you.
They produce the standard C<Makefile.PL> you see when you download and
install modules, and this produces a Makefile with a C<dist> target.
+ perl Makefile.PL && make test && make distcheck && make dist
+
Once you've ensured that your module passes its own tests - always a
good thing to make sure - you can C<make distcheck> to make sure
everything looks OK, followed by C<make dist>, and the Makefile will
@@ -276,5 +278,4 @@ Updated by Kirrily "Skud" Robert, C<skud@cpan.org>
L<perlmod>, L<perlmodlib>, L<perlmodinstall>, L<h2xs>, L<strict>,
L<Carp>, L<Exporter>, L<perlpod>, L<Test::Simple>, L<Test::More>
L<ExtUtils::MakeMaker>, L<Module::Build>, L<Module::Starter>
-L<http://www.cpan.org/>, Ken Williams' tutorial on building your own
-module at L<http://mathforum.org/~ken/perl_modules.html>
+L<http://www.cpan.org/>