diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-05-27 05:37:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-05-27 05:37:41 +0000 |
commit | c8352a86a1ec1fe70ffd3b852463b1a4c9be73d0 (patch) | |
tree | b711c5ed5fcfc22cc650f11114ee52fae80271d5 /MDK/Common.pm.pl | |
parent | 6ab064d983971735835001abc2b8568871d6c00c (diff) | |
download | perl-MDK-Common-c8352a86a1ec1fe70ffd3b852463b1a4c9be73d0.tar perl-MDK-Common-c8352a86a1ec1fe70ffd3b852463b1a4c9be73d0.tar.gz perl-MDK-Common-c8352a86a1ec1fe70ffd3b852463b1a4c9be73d0.tar.bz2 perl-MDK-Common-c8352a86a1ec1fe70ffd3b852463b1a4c9be73d0.tar.xz perl-MDK-Common-c8352a86a1ec1fe70ffd3b852463b1a4c9be73d0.zip |
- use "our" instead of "use vars"
- add addVarsInSh() and addVarsInShMode()
Diffstat (limited to 'MDK/Common.pm.pl')
-rw-r--r-- | MDK/Common.pm.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MDK/Common.pm.pl b/MDK/Common.pm.pl index ea3cbe6..55218e3 100644 --- a/MDK/Common.pm.pl +++ b/MDK/Common.pm.pl @@ -69,12 +69,12 @@ use MDK::Common::String qw(:all); use MDK::Common::System qw(:all); use MDK::Common::Various qw(:all); -use vars qw(@ISA @EXPORT $VERSION); #); -@ISA = qw(Exporter); +use Exporter; +our @ISA = qw(Exporter); # perl_checker: RE-EXPORT-ALL -@EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; +our @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -$VERSION = "1.1.22"; +our $VERSION = "1.1.23"; 1; EOF |