Re: [PATCH 3/3] The Makefile.PL will now find .pm files itself.

2012-07-25 Thread Jonathan Nieder
Michael G Schwern wrote: > On 2012.7.25 2:11 PM, Jonathan Nieder wrote: >> Who are these comments in perl/Makefile.PL addressed to? > > Somebody adding, renaming or deleting a .pm file. > >> Why would such a person be looking at perl/Makefile.PL? > > Because sometimes they do wacky things Not con

Re: [PATCH 3/3] The Makefile.PL will now find .pm files itself.

2012-07-25 Thread Michael G Schwern
On 2012.7.25 2:11 PM, Jonathan Nieder wrote: >> --- a/perl/Makefile.PL >> +++ b/perl/Makefile.PL >> @@ -2,6 +2,10 @@ use strict; >> use warnings; >> use ExtUtils::MakeMaker; >> use Getopt::Long; >> +use File::Find; >> + >> +# Don't forget to update the perl/Makefile, too. >> +# Don't forget to t

Re: [PATCH 3/3] The Makefile.PL will now find .pm files itself.

2012-07-25 Thread Jonathan Nieder
Jonathan Nieder wrote: > Michael G. Schwern wrote: >> --- a/perl/Makefile.PL >> +++ b/perl/Makefile.PL >> @@ -2,6 +2,10 @@ use strict; >> use warnings; >> use ExtUtils::MakeMaker; >> use Getopt::Long; >> +use File::Find; >> + >> +# Don't forget to update the perl/Makefile, too. >> +# Don't forg

Re: [PATCH 3/3] The Makefile.PL will now find .pm files itself.

2012-07-25 Thread Jonathan Nieder
Hi, Michael G. Schwern wrote: > It is no longer necessary to manually add new .pm files to the > Makefile.PL. This makes it easier to add modules. Thanks! Sorry I missed this. [...] > --- a/perl/Makefile.PL > +++ b/perl/Makefile.PL > @@ -2,6 +2,10 @@ use strict; > use warnings; > use ExtUti

[PATCH 3/3] The Makefile.PL will now find .pm files itself.

2012-07-24 Thread Michael G. Schwern
From: "Michael G. Schwern" It is no longer necessary to manually add new .pm files to the Makefile.PL. This makes it easier to add modules. It is still necessary to add them to the Makefile, but that extra work should be removed at a future date. Signed-off-by: Michael G Schwern --- perl/Mak