diff options
author | Norbert Preining <preining@logic.at> | 2008-06-03 07:26:51 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-06-03 07:26:51 +0000 |
commit | 88f01b08bae3ca6fef622aa6046285bffc384845 (patch) | |
tree | d532c0bbb348bce5b4df0dcad463f6683d8028cd /Master/tlpkg/installer/install-menu-perltk.pl | |
parent | 9bc90aa1479f6cbf5c1202c8ecf3c64da5ddedc5 (diff) |
install-menu-perltk.pl: use $^W and strict
git-svn-id: svn://tug.org/texlive/trunk@8508 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-perltk.pl')
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl index 12d859ab6d6..3e340b65eea 100644 --- a/Master/tlpkg/installer/install-menu-perltk.pl +++ b/Master/tlpkg/installer/install-menu-perltk.pl @@ -8,6 +8,9 @@ # # +use strict; +$^W = 1; + my $svnrev = '$Revision$'; $svnrev =~ m/: ([0-9]+) /; $::menurevision = $1; @@ -65,6 +68,7 @@ my $schemebutton; my $collectionstext; my $texmflocaltext; my $texmfsysvartext; +my $texmfhometext; my $texdirtext; my $symlinktext; my $optletterstate; |