summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorZoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>2018-01-30 19:58:54 -0800
committerGary E. Miller <gem@rellim.com>2018-01-30 19:58:54 -0800
commit98c8f5f4429ac3bfc09eee235fee08b9aaff8c52 (patch)
tree137fc7dbb3a6fe48d7d67181f47c20fd5bea75ac /SConstruct
parent598b8b9bc743ac3f03e0580be9fd222b4412a469 (diff)
downloadgpsd-98c8f5f4429ac3bfc09eee235fee08b9aaff8c52.tar.gz
Fix isync build when ublox not selected too.
The isync support uses the ublox driver, but if the ublox support is disabled while isync is enabled, the build will fail.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 5 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 1c1a215c..c6a309ec 100644
--- a/SConstruct
+++ b/SConstruct
@@ -334,6 +334,11 @@ for driver in ('ashtech',
env['nmea0183'] = True
break
+
+# iSync uses ublox underneath, so we force to enable it
+if env['isync']:
+ env['ublox'] = True
+
opts.Save('.scons-option-cache', env)
env.SConsignFile(".sconsign.dblite")