diff options
author | Karl Berry <karl@freefriends.org> | 2021-12-06 22:13:25 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-12-06 22:13:25 +0000 |
commit | 16e104b100aac955be90a99acedcc183376f7978 (patch) | |
tree | 704c0497da95c97b241f0a895c0ea3ee1c63e687 /Master | |
parent | 6bb024a4a5230e73a2dd96b4e8c71b3ccaedef0c (diff) |
use strict; use warnings;
git-svn-id: svn://tug.org/texlive/trunk@61236 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 4 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 3 |
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; |