]> git.wh0rd.org - fontconfig.git/commitdiff
Don't run fc-cache on make install if DESTDIR is set. Instead; run it from
authorMatthieu Herrb <matthieu.herrb@laas.fr>
Sun, 5 May 2002 17:53:41 +0000 (17:53 +0000)
committerMatthieu Herrb <matthieu.herrb@laas.fr>
Sun, 5 May 2002 17:53:41 +0000 (17:53 +0000)
    Xinstall.sh after XFree86 is installed.

fc-cache/Imakefile

index 02807231d2f406a89ad0f7b8e4ece85707b58ccc..afd160193ab26bd0d3bbb7b6cb582e0a0f612726 100644 (file)
@@ -10,4 +10,6 @@ ComplexProgramTarget(fc-cache)
 LinkBuildBinary(ProgramTargetName(fc-cache))
 
 install::
-       FC_DEBUG=128 $(FCCACHE) -v
+       if [ x$${DESTDIR} = x ]; then \
+               FC_DEBUG=128 $(FCCACHE) -v ;\
+       fi