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::Buildgathers 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::MakeMakerand others) store the finals that should be installed between the calls ofmakeandmake install(orBuildandBuild install). These files are also used during the run ofmake testorBuild test.Not sure if this helps.