From 7574516004dd5534ff9b382943223c8836cf00c3 Mon Sep 17 00:00:00 2001 From: t0m Date: Tue, 14 Jul 2009 00:15:28 +0100 Subject: [PATCH] Fix the issue I wasn't having with hash ordering just in case ;) --- Changes | 3 +++ lib/Module/Install/CheckConflicts.pm | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 8139380..672f6e0 100644 --- a/Changes +++ b/Changes @@ -1,2 +1,5 @@ + * Load Module::Install::Base explicitly so that Module::Install correctly + finds us if we're the first extension loaded. + 0.01 Fri, 03 Jul 2009 03:51:28 +0200 * Initial release. diff --git a/lib/Module/Install/CheckConflicts.pm b/lib/Module/Install/CheckConflicts.pm index 49febf9..c33a2b0 100644 --- a/lib/Module/Install/CheckConflicts.pm +++ b/lib/Module/Install/CheckConflicts.pm @@ -3,10 +3,11 @@ use warnings; package Module::Install::CheckConflicts; +use base 'Module::Install::Base'; + BEGIN { our $VERSION = '0.01'; our $ISCORE = 1; - our @ISA = qw{Module::Install::Base}; } sub check_conflicts {