mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
build.sh: only modify googlemaps .qmake.conf on Mac
This otherwise causes a failure on Linux builds. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f3c06279f1
commit
82a1757e09
1 changed files with 4 additions and 2 deletions
|
@ -451,8 +451,10 @@ if [ "$SKIP_GOOGLEMAPS" != "1" ] ; then
|
|||
git checkout master
|
||||
git pull --rebase
|
||||
|
||||
# remove the qt_build_config from .qmake.conf as that fails on Travis
|
||||
sed -i '' 's/.*qt_build_config.*//' .qmake.conf
|
||||
if [ $PLATFORM = "Darwin" ] ; then
|
||||
# remove the qt_build_config from .qmake.conf as that fails on Travis
|
||||
sed -i 's/.*qt_build_config.*//' .qmake.conf
|
||||
fi
|
||||
|
||||
mkdir -p build
|
||||
cd build
|
||||
|
|
Loading…
Add table
Reference in a new issue