diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-06-30 06:54:41 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-06-30 06:54:41 +0000 |
commit | 6d0fc7dc62ac9a3072c56990c9c7ec34413bfc4e (patch) | |
tree | 80481c89ac00e800cc9ce993c046d0220733e7e6 /Master | |
parent | 17c6f6f330816d9a862491c5bcb35e9cf1888779 (diff) |
utils/xindy: Support spaces in paths
git-svn-id: svn://tug.org/texlive/trunk@37716 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf-dist/scripts/xindy/xindy.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/xindy/xindy.pl b/Master/texmf-dist/scripts/xindy/xindy.pl index e6f3f6febb4..dc5cada7810 100755 --- a/Master/texmf-dist/scripts/xindy/xindy.pl +++ b/Master/texmf-dist/scripts/xindy/xindy.pl @@ -773,8 +773,9 @@ sub xindy_expression () { # "latin", "cp", "iso8859", "ascii", or "utf8". @codepages = qw(latin cp iso8859 ascii utf8) unless @codepages; my @styles; + my $quotified_lang_dir = quotify($lang_dir); foreach my $cp ( @codepages ) { - @styles = glob("'$lang_dir/$variant$cp*-lang.xdy'"); + @styles = glob("$quotified_lang_dir/$variant$cp*-lang.xdy"); last if @styles; } unless ( @styles ) { |