diff options
Diffstat (limited to 'Master/tlpkg')
-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 |