Subject: | "Mousse without Module::Install" example does nothing |
The docs say:
Using Mousse without Module::Install
If you don't use Module::Install for your Makefile.PL, or if
you want to only update Mousse by hand, you can use this
simple command:
perl -MMousse::Maker -e make_mousse 'Chocolate::Mousse' >
lib/Chocolate/Mousse.pm
Which does nothing I can see.
With warnings on:
$ perl -MMousse::Maker -we make_mousse 'Chocolate::Mousse'
Useless use of a constant (make_mousse) in void context at -e line 1.
The problem is Mousse::Maker does not export make_mousse or even offer
it as an optional export. It only exports make() which does not appear
to exist.
Mousse::Maker has no documentation, so it's not clear what the various
make_??? subroutines do, though I can guess.