diff options
author | Karl Berry <karl@freefriends.org> | 2007-08-01 00:59:34 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-08-01 00:59:34 +0000 |
commit | 8a715edd558559ecccfe3eb8f732d8a854e78fe9 (patch) | |
tree | 2e5a7b14a320fcf3f4ab896300c8a9f0b85bfcf5 /Build | |
parent | 4334d1b8217611a91fdc9616871639ee1a0592ba (diff) |
save diffs in a temp file for inspection.
git-svn-id: svn://tug.org/texlive/trunk@4688 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/cdbuild/place | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Build/cdbuild/place b/Build/cdbuild/place index 6a2a2806fb8..6a1da1e3b3f 100755 --- a/Build/cdbuild/place +++ b/Build/cdbuild/place @@ -115,10 +115,11 @@ if (!defined($tlpold)) { } print `comm -3 /tmp/pkgfiles.new /tmp/pkgfiles.old`; my @difffiles = `comm -12 /tmp/pkgfiles.new /tmp/pkgfiles.old`; - chomp(@difffiles); + chomp (@difffiles); my $sum = 0; + unlink ("/tmp/pkgfiles.diff"); foreach (@difffiles) { - my @foo = `diff --ignore-all-space -U 0 $M/$_ $mydir/$package/$_`; + my @foo = `diff --ignore-all-space -U 0 $M/$_ $mydir/$package/$_ >>/tmp/pkgfiles.diff`; $sum += ($#foo + 1); } my $nrcommfiles = $#difffiles + 1; |