Skip Menu |

This queue is for tickets about the Apache-AuthCookieDBIRadius CPAN distribution.

Report information
The Basics
Id: 3203
Status: new
Priority: 0/
Queue: Apache-AuthCookieDBIRadius

People
Owner: Nobody in particular
Requestors: nick.phillips [...] stonebow.otago.ac.nz
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



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' }, );