summaryrefslogtreecommitdiff
path: root/autoscripts/postrm-xfonts
diff options
context:
space:
mode:
authorjoey <joey>2001-03-17 05:05:04 +0000
committerjoey <joey>2001-03-17 05:05:04 +0000
commitfc94604df8b0551ed52d78f735a65d1f3924ed71 (patch)
tree9e8c896d02974008b7c093aebf87fec9ee19ca43 /autoscripts/postrm-xfonts
parent8656127b483fdf64336ee97dc440d6c0a4a5a929 (diff)
r455: * Applied a patch from Anton Zinoviev <anton@lml.bas.bg> to pass -e
to mkfontdir. Closes: #89418
Diffstat (limited to 'autoscripts/postrm-xfonts')
-rw-r--r--autoscripts/postrm-xfonts11
1 files changed, 10 insertions, 1 deletions
diff --git a/autoscripts/postrm-xfonts b/autoscripts/postrm-xfonts
index 016a6392..851b61f5 100644
--- a/autoscripts/postrm-xfonts
+++ b/autoscripts/postrm-xfonts
@@ -1,10 +1,19 @@
+makefontdir() {
+ ENCDIR=/usr/lib/X11/fonts/encodings
+ if [ -d $ENCDIR -a -d $ENCDIR/large ]; then
+ /usr/bin/X11/mkfontdir -e $ENCDIR -e $ENCDIR/large "$@"
+ else
+ /usr/bin/X11/mkfontdir "$@"
+ fi
+}
+
fontdirs="#FONTDIRS#"
updatecmds="#UPDATECMDS#"
for currentdir in $fontdirs; do
longdir=/usr/lib/X11/fonts/$currentdir
if [ -d $longdir ]; then
- for file in fonts.dir fonts.alias; do
+ for file in fonts.dir fonts.alias encodings.dir; do
rm -f $longdir/$file
done
if [ $(find $longdir| wc -l) -eq 1 ]; then