Rebuild the fontcache at the end of make install.

This commit is contained in:
matthieu 2007-10-27 20:01:23 +00:00
parent b66e17dd2f
commit 3e42211f31

View File

@ -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 <bsd.own.mk>
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 \