in reply to Re: Re: MakeMaker, h2xs, and writing CPAN modules
in thread MakeMaker, h2xs, and writing CPAN modules

In the usual incantation:
perl Makefile.PL
make
make test
make install
the build library (blib) is created by the second line make, and is most useful in the third line make test. You cannot use blib before make.

And if you can't even after that, there is something seriously wrong with your makefile / machine / Perl installation / file system / what not.

  • Comment on Re x 3: MakeMaker, h2xs, and writing CPAN modules