> What is a *.pm.PL file? Is it used > to dynamically generate PM's?
Exactly. Actually during the build phase of any Perl module (any build system, EUMM or MB) any file that has a .PL on the end is used to generate the file given by the rest of the name. That is why a Makefile.PL generates a Makefile and Build.PL generates a script named Build. In Physics::Unit I actually use a couple of .pod.PL files to dynamically build .pod files at build time. https://metacpan.org/source/KLORTHO/Physics-Unit-0.53/lib/Physics/Unit HTH. Joel _______________________________________________ Perldl mailing list [email protected] http://mailman.jach.hawaii.edu/mailman/listinfo/perldl
