summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-06-19 09:00:46 +0000
committerNorbert Preining <preining@logic.at>2008-06-19 09:00:46 +0000
commit32ca2e1b6954174de15f28cc54126e3f68f4c10b (patch)
tree968adf615ee8d6019a63a36de5a828427bafb914
parentcc866c501ef16271ff6a00cb5b6489d879b6db48 (diff)
tlmgr.pl: use the regexp for special-update-win32 packages
git-svn-id: svn://tug.org/texlive/trunk@8873 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl7
1 files changed, 1 insertions, 6 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index a4f33c970d6..a9909f9852c 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -637,12 +637,7 @@ sub action_update {
$opt_backupdir, "${pkg}.r" . $tlp->revision);
}
}
-
- if (win32() && (($pkg =~ m/^texlive\.infra/) ||
- ($pkg =~ m/^luatex/) ||
- ($pkg =~ m/^bin-tlperl\.win32$/) ||
- ($pkg =~ m/^texlive.infra/) ||
- ($pkg =~ m/^bin-texlive/))) {
+ if (win32() && ($pkg =~ m/$WinSpecialUpdatePackagesRegexp/)) {
if (!$updater_started) {
open UPDATER, ">" . $localtlpdb->root . "/tlpkg/installer/updater.bat"
or die "Cannot create updater.bat: $!";