diff options
author | Norbert Preining <preining@logic.at> | 2017-04-27 08:31:00 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2017-04-27 08:31:00 +0000 |
commit | 6fd3481f51617c4fdd014a6784cc6b2d5fcce5c7 (patch) | |
tree | b48ec707c6fa6f9e5606ca8663d39f70879f7b48 /Master | |
parent | ccf4999c42b596a5577ede75881ce8338967fb86 (diff) |
fix stupid updmap bug
git-svn-id: svn://tug.org/texlive/trunk@44075 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/updmap.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/updmap.pl b/Master/texmf-dist/scripts/texlive/updmap.pl index 7b796c8a614..23774e4ea67 100755 --- a/Master/texmf-dist/scripts/texlive/updmap.pl +++ b/Master/texmf-dist/scripts/texlive/updmap.pl @@ -1480,7 +1480,7 @@ sub enable_disable_maps { $type =~ s/map$/Map/; $type = ucfirst($type); # don't allow for map names containing / - die "$prg: map files cannot be relative/absolute paths: $map\n" if ($map =~ m{/}) + die "$prg: map files cannot be relative/absolute paths: $map\n" if ($map =~ m{/}); enable_map($tc, $type, $map); } else { # this is --disable MapName |