diff options
-rwxr-xr-x | Master/tlpkg/bin/place | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/place b/Master/tlpkg/bin/place index 3a934183803..b977cf6b914 100755 --- a/Master/tlpkg/bin/place +++ b/Master/tlpkg/bin/place @@ -131,7 +131,7 @@ if (!defined($tlpold)) { my $cooked_file = "$cooked/$package/$f"; # diff has no options for handling Mac line endings; the above # don't suffice. So use our own script for the initial comparison. - if (system ("cmp-textfiles $master_file $cooked_file") == 0) { + if (system ("cmp-textfiles '$master_file' '$cooked_file'") == 0) { $identical++; } else { my @diff_out = `$diff_cmd $master_file $cooked_file | tee -a $diff_file`; |