What is the output of building a perl module using Module::build
.
I don't know how to make reuse of that. help me to resolve this issue (Again I got the the same code inside blib->lib
directory.
What is the output of building a perl module using Module::build
.
I don't know how to make reuse of that. help me to resolve this issue (Again I got the the same code inside blib->lib
directory.
Copyright © 2021 Jogjafile Inc.
Module::Build
gathers files and information from your module and creates a blib folder where it stages the files that will be installed in your system when you useBuild install
. That said, that folder is only a way ofModule::Build
(andExtUtils::MakeMaker
and others) store the finals that should be installed between the calls ofmake
andmake install
(orBuild
andBuild install
). These files are also used during the run ofmake test
orBuild test
.Not sure if this helps.