summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2009-11-10 22:24:49 +0000
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2009-11-10 22:24:49 +0000
commit638f4c005b3fa16c40ec8321d6f94958777d2e88 (patch)
tree8652c3e50db58fd325173ea9674c16fce56a3eaa /Master/tlpkg/TeXLive
parent70e6b54a3c7492522a931f5b6cb5c616c815ff55 (diff)
tl-update-tlnet now ignores texlive.infra unless --all is given.
git-svn-id: svn://tug.org/texlive/trunk@15986 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 26f35e009a7..38fcb781b1f 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -3089,8 +3089,9 @@ sub compare_tlpobjs {
# $ret{'different_packages'}->{$package} = output of compare_tlpobjs
#
sub compare_tlpdbs {
- my ($tlpdbA, $tlpdbB) = @_;
+ my ($tlpdbA, $tlpdbB, @add_ignored_packs) = @_;
my @ignored_packs = qw/00texlive.installer 00texlive.image/;
+ push @ignored_packs, @add_ignored_packs;
my @inAnotinB;
my @inBnotinA;