diff options
author | Karl Berry <karl@freefriends.org> | 2013-09-21 21:52:27 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-09-21 21:52:27 +0000 |
commit | 0a32df7bf5b30b5b8a25c38ce9456755eeef9a2b (patch) | |
tree | 7acb34ab1d3b9b44e62b8026d4e4f87061f4d072 /Master | |
parent | c1c7638190760c54cc4aa61958a8b0636ad6a968 (diff) |
reverse current/new display; more pfb exceptions
git-svn-id: svn://tug.org/texlive/trunk@31721 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/check-files-by-format | 3 | ||||
-rwxr-xr-x | Master/tlpkg/libexec/place | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/check-files-by-format b/Master/tlpkg/bin/check-files-by-format index 1be522f660f..c93f3def849 100755 --- a/Master/tlpkg/bin/check-files-by-format +++ b/Master/tlpkg/bin/check-files-by-format @@ -94,6 +94,7 @@ my $exclude_pfb = { '*base*' => 'texmf-dist/fonts/type1', 'public/esstix/' => 1, # 12may11 author fixed some, others will remain 'public/ethiop-t1/' => 1, 'public/eurosym/' => 1, + 'public/fbb/' => 1, # 23aug13 bluevalues, not fixable 'public/foekfont/' => 1, 'public/fonetika/' => 1, 'public/fourier/' => 1, @@ -190,7 +191,7 @@ my $exclude_vf = { '*base*' => 'texmf-dist/fonts/vf', 'public/gfssolomos/' => 1, 'public/hfoldsty/' => 1, 'public/kerkis/' => 1, - 'public/sansmathfonts' => 2, # 20may13 ok with cmssbx12.tfm from sauter + 'public/sansmathfonts/' => 2, # 20may13 ok with cmssbx12.tfm from sauter 'mathdesign/mdbch/' => 1, 'mathdesign/mdput/' => 1, 'mathdesign/mdugm/' => 1, diff --git a/Master/tlpkg/libexec/place b/Master/tlpkg/libexec/place index 49a17a69bd0..d037d412bf8 100755 --- a/Master/tlpkg/libexec/place +++ b/Master/tlpkg/libexec/place @@ -330,7 +330,7 @@ sub show_tlp_diffs { if (keys %Old == 0) { print "place: $package not present in $M/$InfraLocation/$DatabaseName"; } else { - print "new vs. present $package (present is indented)\n"; + print "current vs. new $package (new is indented)\n"; my @oldfiles = keys %Old; unlink ("$tmpfile.old"); foreach (sort @oldfiles) { @@ -341,8 +341,8 @@ sub show_tlp_diffs { foreach (sort @newfiles) { `echo "$_" >>$tmpfile.new`; } - print `comm -3 $tmpfile.new $tmpfile.old`; - my @difffiles = `comm -12 $tmpfile.new $tmpfile.old`; + print `comm -3 $tmpfile.old $tmpfile.new`; + my @difffiles = `comm -12 $tmpfile.old $tmpfile.new`; chomp (@difffiles); my $sum = 0; my $identical = 0; |