diff options
-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 |