Skip Menu |

This queue is for tickets about the Class-Hook CPAN distribution.

Report information
The Basics
Id: 16385
Status: resolved
Priority: 0/
Queue: Class-Hook

People
Owner: Nobody in particular
Requestors: jonasbn [...] cpan.org
Cc:
AdminCc:

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



Subject: Patch for Makefile.PL to avoid installation of FOO.pm
Hello, I have just created a simple patch to your Makefile.PL for Class::Hook so that the FOO.pm file is not installed, during installtion. It seems as if the FOO.pm is there solely for testing purposes and therefor it should not be installed. jonasbn
Index: Makefile.PL =================================================================== RCS file: /cvs/patches/Class-Hook-0.01/Makefile.PL,v retrieving revision 1.1 diff -u -r1.1 Makefile.PL --- Makefile.PL 9 Dec 2005 10:45:35 -0000 1.1 +++ Makefile.PL 9 Dec 2005 10:55:35 -0000 @@ -8,6 +8,9 @@ Time::HiRes => 0.01, Test::Simple => 0.01, }, + PM => { + 'lib/Class/Hook.pm' => '$(INST_LIBDIR)/Hook.pm', + }, AUTHOR => 'Pierre Denis <pdenis@fotango.com>', ABSTRACT => 'Add hooks on methods from other classes', );