diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-12-07 10:51:31 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-07 15:01:24 -0800 |
commit | dd83ca9d59210ca11c4c2b4e8f1fb06817c9b567 (patch) | |
tree | 1159cb22e33b3ec8f23ccaeb48a2eb476b786fcd /scripts/docker | |
parent | f4f9ba9263c97a7c7612b68711a6c92c70d8721a (diff) | |
download | subsurface-dd83ca9d59210ca11c4c2b4e8f1fb06817c9b567.tar.gz |
GitHub Actions: deal with case sensitive file system
Sadly, there's an explicit change in the sources to of QtConnectivity
that requires this workaround when running the build on a case sensitive
file system.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/docker')
-rw-r--r-- | scripts/docker/mxe-build-container/Dockerfile-stage2 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/docker/mxe-build-container/Dockerfile-stage2 b/scripts/docker/mxe-build-container/Dockerfile-stage2 index a9ae812a5..55fa3480c 100644 --- a/scripts/docker/mxe-build-container/Dockerfile-stage2 +++ b/scripts/docker/mxe-build-container/Dockerfile-stage2 @@ -13,7 +13,8 @@ RUN cd /win/mxe ; \ # manually build the Win BLE version of QtConnectivity (we can drop this with Qt 5.14) RUN cd /win/mxe ; \ - mkdir -p neolit ; cd neolit ; git clone -b wip/win git://github.com/qt/qtconnectivity + mkdir -p neolit ; cd neolit ; git clone -b wip/win git://github.com/qt/qtconnectivity ; \ + sed -i 's/SetupAPI.h/setupapi.h/' qtconnectivity/src/bluetooth/qlowenergycontroller_win.cpp RUN cd /win/mxe/neolit/qtconnectivity ; \ PATH=/win/mxe/usr/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /win/mxe/usr/i686-w64-mingw32.shared/qt5/bin/qmake qtconnectivity.pro ; \ PATH=/win/mxe/usr/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin make -j 6 ; \ |