mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
build.sh: fix comparison
This prevented googlemaps from building in some circumstances. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f691593e65
commit
f034121bef
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ else
|
|||
PRINTING="-DNO_PRINTING=ON"
|
||||
fi
|
||||
|
||||
if [ $SKIP_GOOGLEMAPS != "1" ] ; then
|
||||
if [ "$SKIP_GOOGLEMAPS" != "1" ] ; then
|
||||
# build the googlemaps map plugin
|
||||
|
||||
cd $SRC
|
||||
|
|
Loading…
Reference in a new issue