From 3e42211f3180e501c4675c9bb7cdeb0a20833f46 Mon Sep 17 00:00:00 2001 From: matthieu Date: Sat, 27 Oct 2007 20:01:23 +0000 Subject: [PATCH] Rebuild the fontcache at the end of make install. --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7b87d10de..970a9ba0f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.21 2007/06/11 15:27:51 todd Exp $ +# $OpenBSD: Makefile,v 1.22 2007/10/27 20:01:23 matthieu Exp $ .include LOCALAPPD=/usr/local/lib/X11/app-defaults @@ -35,6 +35,7 @@ beforeinstall: afterinstall: ${MAKE} install-mk ${MAKE} fix-appd + ${MAKE} font-cache /usr/libexec/makewhatis ${DESTDIR}/usr/X11R6/man realinstall: _SUBDIRUSE @@ -45,6 +46,14 @@ install-mk: && ${MAKE} X11BASE=${X11BASE} install .endif +font-cache: + @echo "running fc-cache" + if test -z "$(DESTDIR)"; then \ + fc-cache -s -v ;\ + else\ + fc-cache -c ${DESTDIR} -s -v ;\ + fi + fix-appd: # Make sure /usr/local/lib/X11/app-defaults is a link if [ ! -L $(DESTDIR)${LOCALAPPD} ]; then \