Oops. Fix for bug 15928 used wrong path for installed fc-cache.

fc-cache lives in $(bindir)/fc-cache, not $(bindir)/fc-cache/fc-cache.
This commit is contained in:
Keith Packard 2008-05-24 17:01:12 -07:00
parent e91e7efd7b
commit 83c5c357ab
1 changed files with 2 additions and 2 deletions

View File

@ -95,8 +95,8 @@ install-data-local:
$(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \ $(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \
fi; fi fi; fi
@(if $(RUN_FC_CACHE_TEST); then \ @(if $(RUN_FC_CACHE_TEST); then \
echo " $(bindir)/fc-cache/fc-cache -s -f -v"; \ echo " $(bindir)/fc-cache -s -f -v"; \
$(bindir)/fc-cache/fc-cache -s -f -v; \ $(bindir)/fc-cache -s -f -v; \
else \ else \
echo "***"; \ echo "***"; \
echo "*** Warning: fonts.cache not built"; \ echo "*** Warning: fonts.cache not built"; \