Don't run fc-cache on make install if DESTDIR is set. Instead; run it from

Xinstall.sh after XFree86 is installed.
This commit is contained in:
Matthieu Herrb 2002-05-05 17:53:41 +00:00
parent 28e413038d
commit 1ce2a1bbad
1 changed files with 3 additions and 1 deletions

View File

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