From 27def216ae73006e4d4152ce4629221f81400467 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Thu, 20 Nov 2008 12:18:06 +0000 Subject: clean up the 00texlive mess: always check for $name =~ m/^00texlive/ git-svn-id: svn://tug.org/texlive/trunk@11371 c570f23f-e606-0410-a88d-b1316a301751 --- Master/tlpkg/bin/check-depend-consistency | 6 ++++-- Master/tlpkg/bin/tlpsrc2tlpdb | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'Master/tlpkg/bin') diff --git a/Master/tlpkg/bin/check-depend-consistency b/Master/tlpkg/bin/check-depend-consistency index bdc298f069a..2859a3118d2 100755 --- a/Master/tlpkg/bin/check-depend-consistency +++ b/Master/tlpkg/bin/check-depend-consistency @@ -45,8 +45,10 @@ sub main $presentpkg{$pkg} = 1; } for my $pkg ($tlpdb->list_packages) { - next if ($pkg =~ m/^00texlive\.config$/); - next if ($pkg =~ m/^00texlive-installation\.config$/); + # do not check any package starting with 00texlive + next if $pkg =~ m/^00texlive/; + #next if ($pkg =~ m/^00texlive\.config$/); + #next if ($pkg =~ m/^00texlive-installation\.config$/); for my $d ($tlpdb->get_package($pkg)->depends) { next if ($d =~ m/\.ARCH$/); if (!defined($presentpkg{$d})) { diff --git a/Master/tlpkg/bin/tlpsrc2tlpdb b/Master/tlpkg/bin/tlpsrc2tlpdb index 26ce7180aa0..f664c5e656a 100755 --- a/Master/tlpkg/bin/tlpsrc2tlpdb +++ b/Master/tlpkg/bin/tlpsrc2tlpdb @@ -106,7 +106,7 @@ sub main # packages which have already a .win32 extension or the # 00texlive.something package are NOT split, never! if ($tlp->name !~ m/\.win32/ - && $tlp->name !~ m/^00texlive\./) { + && $tlp->name !~ m/^00texlive/) { my @binobjs = $tlp->split_bin_package; foreach my $binobj (@binobjs) { # we recompute the revision numbers of the binary packages -- cgit v1.2.3