summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-05-17 15:46:28 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-05-17 15:46:28 +0000
commit2ced8c2fc0258c1651a0b2de3c8f0c18b9de4048 (patch)
treee3c9079adf06af79f50f5a39654415cd732515ed /usr.sbin
parente5b9b26b25e8807400b7af9d0a802706d03f1399 (diff)
make sure that mkfontdir and friends get their arguments
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/pkg_add/OpenBSD/PackingElement.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingElement.pm b/usr.sbin/pkg_add/OpenBSD/PackingElement.pm
index 799973b662c..1a5a52ac7b0 100644
--- a/usr.sbin/pkg_add/OpenBSD/PackingElement.pm
+++ b/usr.sbin/pkg_add/OpenBSD/PackingElement.pm
@@ -1,5 +1,5 @@
# ex:ts=8 sw=4:
-# $OpenBSD: PackingElement.pm,v 1.109 2007/05/14 11:02:15 espie Exp $
+# $OpenBSD: PackingElement.pm,v 1.110 2007/05/17 15:46:27 espie Exp $
#
# Copyright (c) 2003-2007 Marc Espie <espie@openbsd.org>
#
@@ -1127,11 +1127,11 @@ sub finish_fontdirs
map { update_fontalias($_) } @l unless $state->{not};
print "You may wish to update your font path for ", join(' ', @l), "\n";
return if $state->{not};
- run_if_exists("/usr/X11R6/bin/mkfontdir");
+ run_if_exists("/usr/X11R6/bin/mkfontdir", @l);
map { restore_fontdir($_) } @l;
- run_if_exists("/usr/X11R6/bin/fc-cache");
+ run_if_exists("/usr/X11R6/bin/fc-cache", @l);
}
}