summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Jan Mulder <jlmulder@xs4all.nl>2019-01-06 18:39:02 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-01-07 09:27:38 -0800
commit4b7b0f2dec7c5106683c1d42e38a59b01308b71a (patch)
tree274c434dedd24f542a44fb98bdd248692bf55f86 /scripts
parent0903bef9db8659313c4bb533c295505c0c3851bf (diff)
downloadsubsurface-4b7b0f2dec7c5106683c1d42e38a59b01308b71a.tar.gz
Build: remove --skip-googlemaps build option
The scripts/build.sh script has an option --skip-googlemaps. Introduced in 2017 at a moment the Travis Mac build failed on this. Interestingly, when Mac building of the maps plugin was possible again (commit 79e3f69f488df) the --skip-googlemaps stayed. Obviously, this hack was never intended to be used for anything else then getting it passed Travis on some point in time for a specific Mac build. So, remove this option. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build.sh42
1 files changed, 18 insertions, 24 deletions
diff --git a/scripts/build.sh b/scripts/build.sh
index f8cb30c8f..f63c0d2c1 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -59,17 +59,13 @@ while [[ $# -gt 0 ]] ; do
# we are building an AppImage as by product
CREATE_APPDIR="1"
;;
- -skip-googlemaps)
- # hack for Travix Mac build
- SKIP_GOOGLEMAPS="1"
- ;;
-release)
# don't build Debug binaries
DEBUGRELEASE="Release"
;;
*)
echo "Unknown command line argument $arg"
- echo "Usage: build.sh [-no-bt] [-build-deps] [-build-with-webkit] [-mobile] [-desktop] [-both] [-create-appdir] [-skip-googlemaps] [-release]"
+ echo "Usage: build.sh [-no-bt] [-build-deps] [-build-with-webkit] [-mobile] [-desktop] [-both] [-create-appdir] [-release]"
exit 1
;;
esac
@@ -421,27 +417,25 @@ else
PRINTING="-DNO_PRINTING=ON"
fi
-if [ "$SKIP_GOOGLEMAPS" != "1" ] ; then
- # build the googlemaps map plugin
+# build the googlemaps map plugin
- cd $SRC
- ./subsurface/scripts/get-dep-lib.sh single . googlemaps
- pushd googlemaps
- mkdir -p build
- mkdir -p J10build
- cd build
- $QMAKE "INCLUDEPATH=$INSTALL_ROOT/include" ../googlemaps.pro
- # on Travis the compiler doesn't support c++1z, yet qmake adds that flag;
- # since things compile fine with c++11, let's just hack that away
- # similarly, don't use -Wdata-time
- if [ "$TRAVIS" = "true" ] ; then
- mv Makefile Makefile.bak
- cat Makefile.bak | sed -e 's/std=c++1z/std=c++11/g ; s/-Wdate-time//' > Makefile
- fi
- make -j4
- make install
- popd
+cd $SRC
+./subsurface/scripts/get-dep-lib.sh single . googlemaps
+pushd googlemaps
+mkdir -p build
+mkdir -p J10build
+cd build
+$QMAKE "INCLUDEPATH=$INSTALL_ROOT/include" ../googlemaps.pro
+# on Travis the compiler doesn't support c++1z, yet qmake adds that flag;
+# since things compile fine with c++11, let's just hack that away
+# similarly, don't use -Wdata-time
+if [ "$TRAVIS" = "true" ] ; then
+ mv Makefile Makefile.bak
+ cat Makefile.bak | sed -e 's/std=c++1z/std=c++11/g ; s/-Wdate-time//' > Makefile
fi
+make -j4
+make install
+popd
# finally, build Subsurface