summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-05-11 21:54:20 +0000
committerKarl Berry <karl@freefriends.org>2013-05-11 21:54:20 +0000
commit2cf783b2518b38433492c4d962d613e0a2e4d82c (patch)
treec04605838d5ffcb0919da5c1e8a53fbaaf308da3 /Master/texmf-dist/scripts
parent561d3fc77c943ade73edf3c8732915226c7ad8bb (diff)
(check_runfiles): quote "$Master/bin" inside `...`
git-svn-id: svn://tug.org/texlive/trunk@30404 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl
index cbf5d21df7e..0baf18d10eb 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgr.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl
@@ -4711,7 +4711,7 @@ sub check_runfiles {
my $Master = $localtlpdb->root;
# build a list of all runtime files associated to 'normal' packages
#
- (my $non_normal = `ls $Master/bin`) =~ s/\n/\$|/g; # binaries
+ (my $non_normal = `ls "$Master/bin"`) =~ s/\n/\$|/g; # binaries
$non_normal .= '^0+texlive|^bin-|^collection-|^scheme-|^texlive-|^texworks';
my @runtime_files = ();
#