summaryrefslogtreecommitdiff
path: root/installperl
diff options
context:
space:
mode:
authorNicolas R <atoomic@cpan.org>2017-09-12 13:20:25 -0600
committerTodd Rinaldo <toddr@cpan.org>2017-11-11 01:07:18 -0600
commit3d3a0a8a5e7ee9abf3f3e52e1b63942b8c55a069 (patch)
tree0b9243ef82f41ad1cdfc2b934499e49615dce73d /installperl
parentfd55ca4fb1e49bf9880aad1e3d9f27ace56ec139 (diff)
downloadperl-3d3a0a8a5e7ee9abf3f3e52e1b63942b8c55a069.tar.gz
Replace multiple 'use vars' by 'our' in utils
Using vars pragma is discouraged and has been superseded by 'our' declarations available in Perl v5.6.0 or later.
Diffstat (limited to 'installperl')
-rwxr-xr-xinstallperl4
1 files changed, 2 insertions, 2 deletions
diff --git a/installperl b/installperl
index af61203e72..3bf79d2d6f 100755
--- a/installperl
+++ b/installperl
@@ -11,8 +11,8 @@ BEGIN {
}
use strict;
-use vars qw($Is_VMS $Is_W32 $Is_OS2 $Is_Cygwin $Is_Darwin $Is_NetWare $Is_AmigaOS
- %opts $packlist);
+our ($Is_VMS, $Is_W32, $Is_OS2, $Is_Cygwin, $Is_Darwin, $Is_NetWare, $Is_AmigaOS,
+ %opts, $packlist);
my $versiononly;
BEGIN {