am 56ec31cf: am 3fe9a277: am d0f0918b: Merge "Reenable ccache."

* commit '56ec31cfca1ed5f9d833d73c327b2799601cd5a4':
  Reenable ccache.
This commit is contained in:
Ying Wang 2014-06-06 18:43:44 +00:00 committed by Android Git Automerger
commit dd4db3058a

View file

@ -92,8 +92,12 @@ ifneq ($(USE_CCACHE),)
# Check that the executable is here.
ccache := $(strip $(wildcard $(ccache)))
ifdef ccache
CC_WRAPPER ?= $(ccache)
CXX_WRAPPER ?= $(ccache)
ifndef CC_WRAPPER
CC_WRAPPER := $(ccache)
endif
ifndef CXX_WRAPPER
CXX_WRAPPER := $(ccache)
endif
ccache =
endif
endif