summaryrefslogtreecommitdiff
path: root/font
diff options
context:
space:
mode:
authorDeri James <deri@chuzzlewit.myzen.co.uk>2022-06-21 16:38:39 +0100
committerDeri James <deri@chuzzlewit.myzen.co.uk>2022-06-21 16:38:39 +0100
commitced9cd5984814f9701fd681b6c949d0708c2687c (patch)
treee92aff1a3c7d7abf45aafb3fab2108b964780666 /font
parent52f725f019ba87575ba3affbae8e6733b2e6ff13 (diff)
downloadgroff-git-ced9cd5984814f9701fd681b6c949d0708c2687c.tar.gz
[gropdf]: Correct display of pathnames used.
* font/devpdf/util/BuildFoundries.pl: Convert array to string of pathnames.
Diffstat (limited to 'font')
-rw-r--r--font/devpdf/util/BuildFoundries.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/font/devpdf/util/BuildFoundries.pl b/font/devpdf/util/BuildFoundries.pl
index 9bf6fb0e3..76c1bef87 100644
--- a/font/devpdf/util/BuildFoundries.pl
+++ b/font/devpdf/util/BuildFoundries.pl
@@ -86,7 +86,7 @@ sub LoadFoundry
if (lc($r[0]) eq 'foundry')
{
- Warn("\nThe path(s) used for searching:\n".join(':',$foundrypath)."\n") if $notFoundFont;
+ Warn("\nThe path(s) used for searching:\n".join(':',@{$foundrypath})."\n") if $notFoundFont;
$foundry=uc($r[1]);
$foundrypath=[];
push(@{$foundrypath},$dirURW) if $dirURW;
@@ -166,7 +166,7 @@ sub LoadFoundry
}
close(F);
- Warn("\nThe path(s) used for searching:\n".join(':',$foundrypath)."\n") if $notFoundFont;
+ Warn("\nThe path(s) used for searching:\n".join(':',@{$foundrypath})."\n") if $notFoundFont;
}
sub RunAfmtodit