diff options
author | Norbert Preining <preining@logic.at> | 2012-05-14 14:53:22 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2012-05-14 14:53:22 +0000 |
commit | fd066345fc431d5d4c58b0e1318257f80e62cd58 (patch) | |
tree | 0e5225fb6458e7bd6fe7724c54a2305b4f48ace0 | |
parent | 89582b722ca718505b7e1f95e48292dac6396d13 (diff) |
fix wrong call to not existing disableMap in updmap.pl
git-svn-id: svn://tug.org/texlive/trunk@26367 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/updmap.pl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl b/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl index 765c2c6e3a7..a8d39465f65 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl @@ -340,10 +340,8 @@ sub main { if ($opts{'syncwithtrees'}) { my @missing = read_map_files(); if (@missing) { - print "Missing map files found, disabling them in $changes_config_file\n"; - for my $m (@missing) { - $changed ||= disableMap($m); - } + print "Missing map files found, disabling\n @missing\nin $changes_config_file\n"; + $changed ||= enable_disable_maps(@missing); # the original script did not run any update of the map files here, # should we do that? } |