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/tlpkg/libexec/place | |
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/tlpkg/libexec/place')
-rwxr-xr-x | Master/tlpkg/libexec/place | 6 |
1 files changed, 3 insertions, 3 deletions
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; |