summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-09-26 18:04:03 +0000
committerKarl Berry <karl@freefriends.org>2007-09-26 18:04:03 +0000
commit75d7894d4540af87617452c46d796b487b5d9e5b (patch)
treeafc02712331e27c26ea63825d6d0de8e85946a0b /Build
parent4b9d315fe240e62e96c7f4ac884d75f8441e0636 (diff)
count identical files as well as common files.
git-svn-id: svn://tug.org/texlive/trunk@5052 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/cdbuild/place2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/cdbuild/place b/Build/cdbuild/place
index 51ebd11f1b4..9651519bdbb 100755
--- a/Build/cdbuild/place
+++ b/Build/cdbuild/place
@@ -120,7 +120,7 @@ if (!defined($tlpold)) {
my $sum = 0;
my $diff_file = "$TMP/tlplace.diff";
unlink ($diff_file);
- my $diff_cmd = "diff --text --ignore-all-space -U 0";
+ my $diff_cmd = "diff --text --ignore-all-space -U 0 -s";
foreach (@difffiles) {
my @foo = `$diff_cmd $M/$_ $mydir/$package/$_ | tee -a $diff_file`;
$sum += $#foo; # zero-based, so first line doesn't count.