diff options
author | Norbert Preining <preining@logic.at> | 2008-11-20 12:18:06 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-11-20 12:18:06 +0000 |
commit | 27def216ae73006e4d4152ce4629221f81400467 (patch) | |
tree | 6475d691f351376af7abcdc967325204eb365680 /Master | |
parent | 61732a28f0e73ff1347ecca3c03130a195dc5c01 (diff) |
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
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/check-depend-consistency | 6 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tlpsrc2tlpdb | 2 |
2 files changed, 5 insertions, 3 deletions
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 |