Skip to content

Commit

Permalink
perlnewmod.pod: Remove dead link and make a header line stand out more.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeamHall authored and khwilliamson committed Jun 24, 2021
1 parent bab878b commit 830a95d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -774,6 +774,7 @@ Lars Hecking <lhecking@nmrc.ucc.ie>
Larwan Berke <apocal@cpan.org>
Laszlo Molnar <laszlo.molnar@eth.ericsson.se>
Laurent Dami <dami@cpan.org>
Leam Hall <leamhall@gmail.com>
Leif Huhn <leif@hale.dkstat.com>
Len Johnson <lenjay@ibm.net>
Leo Lapworth <leo@cuckoo.org>
Expand Down
7 changes: 4 additions & 3 deletions pod/perlnewmod.pod
Expand Up @@ -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
Expand Down Expand Up @@ -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/>

1 comment on commit 830a95d

@rwp0
Copy link
Contributor

@rwp0 rwp0 commented on 830a95d Jun 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perl Makefile.PL
make test
make distcheck
make dist

would be more readable


also the commands could be wrapped with C<> POD command.

Please sign in to comment.