diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-07-29 13:41:35 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-29 13:41:35 -0700 |
commit | 0021f24eef812313484a2dfb20fa400bd190d1c4 (patch) | |
tree | e525a332c8bc3901ec8d4da570fa91f6cd53b02d /packaging | |
parent | 26879bffcc659da293e2933f9472956a83da495a (diff) | |
download | subsurface-0021f24eef812313484a2dfb20fa400bd190d1c4.tar.gz |
MXE build: better logical grouping
This just makes more sense in which variables go with which code.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/windows/mxe-based-build.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packaging/windows/mxe-based-build.sh b/packaging/windows/mxe-based-build.sh index 56e6f0bc0..31337a9b6 100755 --- a/packaging/windows/mxe-based-build.sh +++ b/packaging/windows/mxe-based-build.sh @@ -4,7 +4,7 @@ # # this file assumes that you have installed MXE on your system # and installed a number of dependencies as well. Latest MXE -# version from git may not always work for Qt5 and Subsurface. +# version from git may not always work for Qt5 and Subsurface. # Try to select an older release version like build-2016-10-12. # # cd ~/src @@ -261,11 +261,6 @@ $BASEDIR/"$MXEDIR"/usr/i686-w64-mingw32.shared/qt5/plugins/platforms \ $BASEDIR/"$MXEDIR"/usr/i686-w64-mingw32.shared/qt5/plugins/geoservices \ $BASEDIR/"$MXEDIR"/usr/i686-w64-mingw32.shared/qt5/plugins/printsupport" -# for some reason we aren't installing Qt5Xml.dll and Qt5Location.dll -# I need to figure out why and fix that, but for now just manually copy that as well -EXTRA_MANUAL_DEPENDENCIES="$BASEDIR/"$MXEDIR"/usr/i686-w64-mingw32.shared/qt5/bin/Qt5Xml$DLL_SUFFIX.dll \ -$BASEDIR/"$MXEDIR"/usr/i686-w64-mingw32.shared/qt5/bin/Qt5Location$DLL_SUFFIX.dll" - STAGING_DIR=$BUILDDIR/subsurface/staging STAGING_TESTS_DIR=$BUILDDIR/subsurface/staging_tests @@ -291,6 +286,11 @@ do done done +# for some reason we aren't installing Qt5Xml.dll and Qt5Location.dll +# I need to figure out why and fix that, but for now just manually copy that as well +EXTRA_MANUAL_DEPENDENCIES="$BASEDIR/"$MXEDIR"/usr/i686-w64-mingw32.shared/qt5/bin/Qt5Xml$DLL_SUFFIX.dll \ +$BASEDIR/"$MXEDIR"/usr/i686-w64-mingw32.shared/qt5/bin/Qt5Location$DLL_SUFFIX.dll" + for f in $EXTRA_MANUAL_DEPENDENCIES do cp $f $STAGING_DIR |