summaryrefslogtreecommitdiff
path: root/Build/source/texk/tetex/updmap.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/tetex/updmap.pl')
-rwxr-xr-xBuild/source/texk/tetex/updmap.pl12
1 files changed, 5 insertions, 7 deletions
diff --git a/Build/source/texk/tetex/updmap.pl b/Build/source/texk/tetex/updmap.pl
index 39d407eb33f..062cf4dc5dc 100755
--- a/Build/source/texk/tetex/updmap.pl
+++ b/Build/source/texk/tetex/updmap.pl
@@ -464,24 +464,22 @@ sub locateWeb2c {
###############################################################################
# locateMap (file ...)
-# apply kpsewhich with format 'dvips config'
+# apply kpsewhich with format 'map'
#
sub locateMap {
my @maps = @_;
- my @files;
-
return @maps if ($#maps < 0);
- @files = `kpsewhich --format=map @maps`;
+ my @files = `kpsewhich --format=map @maps`;
chomp @files;
foreach my $map (@maps) {
- push @missing, $map if (! grep /\/$map$/, @files);
+ push @missing, $map if (! grep /\/$map(\.map)?$/, @files);
}
+
if (wantarray) {
return @files;
- }
- else {
+ } else {
return $files[0];
}
}