summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConstruct8
1 files changed, 7 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 2e5572b9..c606b86f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1899,9 +1899,15 @@ if python_progs:
# get version from each python prog
# this ensures they can run and gps_versions match
+ # However, xgps[speed] -V requires (possibly launching) a usable X11 server,
+ # and takes significant time time to connect to it, so we skip checking
+ # those until that's fixed.
vchk = ''
for prog in python_progs:
- vchk += '$SRCDIR/%s -V\n' % prog
+ if prog not in ['xgps', 'xgpsspeed']:
+ vchk += '$SRCDIR/%s -V\n' % prog
+ else:
+ vchk += '# %s -V not checked due to X11 dependency\n' % prog
python_versions = Utility('python-versions', [python_progs], vchk)
else: