diff options
author | Karl Berry <karl@freefriends.org> | 2017-04-27 21:57:30 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-04-27 21:57:30 +0000 |
commit | d005088a05f861a8454ee3ca75ce3490e8f82d66 (patch) | |
tree | be0550fb377b5883b54e31a61b68b426893d224c | |
parent | 0b331b657051a55ba5f567f66f301f93d215743b (diff) |
sync syntax
git-svn-id: svn://tug.org/texlive/trunk@44087 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/updmap.pl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl b/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl index a8d9ff67293..fa78b1d5762 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl @@ -1,5 +1,5 @@ #!/usr/bin/env perl -# $Id: updmap.pl 44056 2017-04-26 08:14:28Z preining $ +# $Id: updmap.pl 44080 2017-04-27 16:46:42Z karl $ # updmap - maintain map files for outline fonts. # (Maintained in TeX Live:Master/texmf-dist/scripts/texlive.) # @@ -14,7 +14,7 @@ # the original versions were licensed under the following agreement: # Anyone may freely use, modify, and/or distribute this file, without -my $svnid = '$Id: updmap.pl 44056 2017-04-26 08:14:28Z preining $'; +my $svnid = '$Id: updmap.pl 44080 2017-04-27 16:46:42Z karl $'; my $TEXMFROOT; BEGIN { @@ -27,10 +27,10 @@ BEGIN { unshift(@INC, "$TEXMFROOT/tlpkg"); } -my $lastchdate = '$Date: 2017-04-26 10:14:28 +0200 (Wed, 26 Apr 2017) $'; +my $lastchdate = '$Date: 2017-04-27 18:46:42 +0200 (Thu, 27 Apr 2017) $'; $lastchdate =~ s/^\$Date:\s*//; $lastchdate =~ s/ \(.*$//; -my $svnrev = '$Revision: 44056 $'; +my $svnrev = '$Revision: 44080 $'; $svnrev =~ s/^\$Revision:\s*//; $svnrev =~ s/\s*\$$//; my $version = "r$svnrev ($lastchdate)"; @@ -1479,8 +1479,8 @@ sub enable_disable_maps { # allow for all lowercase map types (map/mixedmap/kanjimap) $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{/}) + # don't allow map names containing / + die "$prg: map names cannot contain /: $map\n" if ($map =~ m{/}); enable_map($tc, $type, $map); } else { # this is --disable MapName |