From 1ce2a1bbadc15147e35dbc4c43fae072b8c4805e Mon Sep 17 00:00:00 2001 From: Matthieu Herrb Date: Sun, 5 May 2002 17:53:41 +0000 Subject: [PATCH] Don't run fc-cache on make install if DESTDIR is set. Instead; run it from Xinstall.sh after XFree86 is installed. --- fc-cache/Imakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fc-cache/Imakefile b/fc-cache/Imakefile index 0280723..afd1601 100644 --- a/fc-cache/Imakefile +++ b/fc-cache/Imakefile @@ -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