Skip Menu |

This queue is for tickets about the RT-Extension-MandatoryRequestor CPAN distribution.

Report information
The Basics
Id: 73043
Status: open
Priority: 0/
Queue: RT-Extension-MandatoryRequestor

People
Owner: Nobody in particular
Requestors: jfiske [...] clarkson.edu
Cc:
AdminCc:

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



Paths are hardcoded to reference rt3 directory structure. To support rt4, apply this patch: [jfiske@otto ~]$ diff inc/Module/Install/RTx.pm inc/Module/Install/RTx.pm.orig 47c47 < map { ( "$_/rt4/lib", "$_/lib/rt4", "$_/lib" ) } grep $_, --- Show quoted text
> map { ( "$_/rt3/lib", "$_/lib/rt3", "$_/lib" ) } grep $_,
54c54 < push @INC, $_, "$_/rt4/lib", "$_/lib/rt4", "$_/lib"; --- Show quoted text
> push @INC, $_, "$_/rt3/lib", "$_/lib/rt3", "$_/lib";
Yes, I need to update Module::Install, I'm going to do this soon :)