diff options
author | Karl Berry <karl@freefriends.org> | 2008-12-31 18:30:30 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-12-31 18:30:30 +0000 |
commit | 2827585ef84e470d7ae2f3ebc1108c5132847633 (patch) | |
tree | 62d586bdfaaf046aa5243c35432ea9193f0af0c3 | |
parent | e0e4c882d1d5b888c3f98c668ca7f2e2d313003a (diff) |
quote calls to cmp-textfiles, just in case.
git-svn-id: svn://tug.org/texlive/trunk@11765 c570f23f-e606-0410-a88d-b1316a301751
-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`; |