From c1b802af00ef118d1a5cedd8026971653d3755ac Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Tue, 20 Mar 2007 10:44:06 +0100 Subject: [PATCH] perl: Log and Die funtions are now exportable --- lib/perl/Log.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/perl/Log.pm b/lib/perl/Log.pm index 68b1d372..bd97f6c5 100644 --- a/lib/perl/Log.pm +++ b/lib/perl/Log.pm @@ -10,6 +10,13 @@ use lib 'lib/perl5'; use strict; use warnings; use POSIX; +use Exporter; + +our $version = 1.0; +our @ISA = qw(Exporter); +our @EXPORT = (); +our @EXPORT_OK = qw(Log Die); +our %EXPORT_TAGS = ( all => [qw(&Log &Die)]); my $Prog = (reverse split(/\//, $0))[0]; -- 2.39.2