mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 08:24:25 +01:00
android-arm: Fix file permissions on toolchain files
This commit is contained in:
parent
1ab26b12e5
commit
8b07afd442
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user