From bdc92d0d069583de6f1caa2d23d4783576f25389 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Sun, 16 Nov 2014 13:57:45 -0800 Subject: [PATCH] Dockerfile: Fix CCACHE_DIR env variable * Use the proper environmental variable --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bfab35b..8a9aa36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ VOLUME /aosp # Improve rebuild performance by enabling compiler cache ENV USE_CCACHE 1 -ENV CCACHE /tmp/ccache +ENV CCACHE_DIR /tmp/ccache # Work in the build directory, repo is expected to be init'd here USER aosp