From 30405bb940bf77d15027aa775a530af640d104a9 Mon Sep 17 00:00:00 2001 From: Simon Polack Date: Sun, 16 Aug 2020 01:46:31 +0200 Subject: [PATCH] Fix ccache which is no longer shipped with AOSP ..by adding a ENV VAR pointing to the actual executable. Taken out of StolenHal Pull Request. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 44c2962..a623fee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,9 @@ ENV USE_CCACHE 1 # for no limit. ENV CCACHE_SIZE 50G +# We need to specify the ccache binary since it is no longer packaged along with AOSP +ENV CCACHE_EXEC /usr/bin/ccache + # Environment for the LineageOS branches name # See https://github.com/LineageOS/android_vendor_cm/branches for possible options ENV BRANCH_NAME 'lineage-16.0'