summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-12-06 17:09:56 +0000
committerKarl Berry <karl@freefriends.org>2021-12-06 17:09:56 +0000
commitae4bca457fa7583310a6f209e2fcc71a5005c944 (patch)
treeab013879d406df4782e8e48de41dfc6506567e46
parent0a744d9dc2ef15d0b0805e6c671cf6f8010c590e (diff)
($ReleaseYear, $MinRelease): make "our"
variables, so can use strict; use warnings. git-svn-id: svn://tug.org/texlive/trunk@61229 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/tlpkg/TeXLive/TLConfig.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm
index 423f10d8ff2..5da9b4a4f42 100644
--- a/Master/tlpkg/TeXLive/TLConfig.pm
+++ b/Master/tlpkg/TeXLive/TLConfig.pm
@@ -4,6 +4,7 @@
# This file is licensed under the GNU General Public License version 2
# or any later version.
+use strict; use warnings;
package TeXLive::TLConfig;
my $svnrev = '$Revision$';
@@ -60,12 +61,12 @@ BEGIN {
# the year of our release, will be used in the location of the
# network packages, and in menu names, and other places.
-$ReleaseYear = 2021;
+our $ReleaseYear = 2021;
# users can upgrade from this year to the current year; might be the
# same as the release year, or any number of releases earlier.
# Generally not tested, but should be.
-$MinRelease = 2016;
+our $MinRelease = 2016;
# Meta Categories do not ship files, but only call for other packages.
our @MetaCategories = qw/Collection Scheme/;