Subject: | Makefile.PL needs to specify PM |
Apache-AuthCookieDBIRadius installs unwanted "stuff" along with itself -- AuthCookie.pm version supplied should not be installed by default, and login.pl should not be installed at all.
Makefile.PL needs to specify PM, as included file does. Maybe fixed in more recent version, but search.cpan.org only sees 1.19.
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Apache::AuthCookieDBIRadius',
'VERSION_FROM' => 'AuthCookieDBIRadius.pm', # finds $VERSION
'PM' => { 'AuthCookieDBIRadius.pm' => '$(INST_LIBDIR)/AuthCookieDBIRadius.pm' },
);