summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2012-05-14 14:53:22 +0000
committerNorbert Preining <preining@logic.at>2012-05-14 14:53:22 +0000
commitfd066345fc431d5d4c58b0e1318257f80e62cd58 (patch)
tree0e5225fb6458e7bd6fe7724c54a2305b4f48ace0 /Build
parent89582b722ca718505b7e1f95e48292dac6396d13 (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
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/texlive/updmap.pl6
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?
}