From 1e20a65556093544983953aa9cb30e1fb7e410e2 Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Tue, 5 Nov 2019 20:32:14 +0100 Subject: [PATCH] [travis] Fix ccache --- .docker/qgis3-build-deps.dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.docker/qgis3-build-deps.dockerfile b/.docker/qgis3-build-deps.dockerfile index ea33ab1eda6..a6e1ac61b2d 100644 --- a/.docker/qgis3-build-deps.dockerfile +++ b/.docker/qgis3-build-deps.dockerfile @@ -152,7 +152,8 @@ RUN curl -k https://downloads.kdab.com/clazy/1.6/Clazy-x86_64-1.6.AppImage -o /t && mkdir /opt/clazy \ && cd /opt/clazy \ && /tmp/Clazy.AppImage --appimage-extract \ - && ln -s /opt/clazy/squashfs-root/AppRun /usr/lib/ccache/clazy + && ln -s /opt/clazy/squashfs-root/AppRun /usr/bin/clazy \ + && ln -s ../../bin/ccache /usr/lib/ccache/clazy ENV QT_SELECT=5 ENV LANG=C.UTF-8