summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/install-tl4
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl3
2 files changed, 4 insertions, 3 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 2efe3a0ae0b..3f4dfe0a80e 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -8,6 +8,8 @@
# Be careful when changing wording: *every* normal informational message
# output here must be recognized by the long grep in tl-update-tlnet.
+use strict; use warnings;
+
my $svnrev = '$Revision$';
$svnrev =~ m/: ([0-9]+) /;
$::installerrevision = ($1 ? $1 : 'unknown');
@@ -204,8 +206,6 @@ if (win32) {
));
}
-use strict;
-
# global list of lines that get logged (see TLUtils.pm::_logit).
@::LOGLINES = ();
# if --version, --help, etc., this just gets thrown away, which is ok.
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl
index a2ac2462930..6ba987e36b0 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgr.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl
@@ -5,6 +5,8 @@
# This file is licensed under the GNU General Public License version 2
# or any later version.
+use strict; use warnings;
+
my $svnrev = '$Revision$';
my $datrev = '$Date$';
my $tlmgrrevision;
@@ -85,7 +87,6 @@ use File::Find;
use File::Spec;
use Pod::Usage;
use Getopt::Long qw(:config no_autoabbrev permute);
-use strict;
use TeXLive::TLConfig;
use TeXLive::TLPDB;