From 3d3a0a8a5e7ee9abf3f3e52e1b63942b8c55a069 Mon Sep 17 00:00:00 2001 From: Nicolas R Date: Tue, 12 Sep 2017 13:20:25 -0600 Subject: 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. --- pod/buildtoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pod/buildtoc') diff --git a/pod/buildtoc b/pod/buildtoc index 9c66e93792..004a726a0f 100644 --- a/pod/buildtoc +++ b/pod/buildtoc @@ -1,12 +1,12 @@ #!/usr/bin/perl -w use strict; -use vars qw($Quiet); use File::Spec; use FindBin; use Text::Wrap; use Getopt::Long; +our $Quiet; no locale; # Assumption is that we're either already being run from the top level (*nix, -- cgit v1.2.1