summaryrefslogtreecommitdiffstats
path: root/MDK/Common.pm.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-05-27 05:37:41 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-05-27 05:37:41 +0000
commitc8352a86a1ec1fe70ffd3b852463b1a4c9be73d0 (patch)
treeb711c5ed5fcfc22cc650f11114ee52fae80271d5 /MDK/Common.pm.pl
parent6ab064d983971735835001abc2b8568871d6c00c (diff)
downloadperl-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.pl8
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