android-arm: Fix file permissions on toolchain files

This commit is contained in:
Matt McCormick 2016-07-05 15:44:39 -04:00
parent 1ab26b12e5
commit 8b07afd442

View File

@ -29,7 +29,10 @@ RUN mkdir -p /build && \
--platform=android-14 \
--install-dir=${CROSS_ROOT} && \
cd / && \
rm -rf /build
rm -rf /build && \
find ${CROSS_ROOT} -exec chmod a+r '{}' \; && \
find ${CROSS_ROOT} -executable -exec chmod a+x '{}' \;
ENV DEFAULT_DOCKCROSS_IMAGE thewtex/cross-compiler-android-arm