File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -29,22 +29,20 @@ RUN export DEBIAN_FRONTEND=noninteractive \
29
29
&& ../qt5/configure \
30
30
-confirm-license \
31
31
-opensource \
32
- # Place armhf libraries in the cross-compiling toolchain folder
33
- -prefix "$SYSROOT/usr" \
32
+ -prefix /usr \
34
33
-xplatform linux-arm-gnueabihf-g++ \
35
- # Place x86 binaries (e.g. qmake) and libraries in the normal folder
36
34
-hostprefix /usr \
37
35
-platform linux-g++ \
38
- # Disable unused features
39
36
-nomake examples \
40
37
-nomake tests \
41
38
-no-opengl \
42
39
-reduce-exports \
43
40
&& make \
44
- && make install \
41
+ && make INSTALL_ROOT= "$SYSROOT" install \
45
42
&& cd .. \
46
43
# Clean up
47
44
&& rm -rf qt5 qt5-build \
45
+ && find "$SYSROOT" -type l,f -name "*.la" | xargs --no-run-if-empty rm \
48
46
&& apt-get autoremove -y \
49
47
git \
50
48
python \
You can’t perform that action at this time.
0 commit comments