summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-07-31 00:50:37 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-07-31 00:50:37 -0400
commit1c8f2ccb858a4ee4affb37a6805ffffac0fef665 (patch)
treea0fb8729afdf58aec13c46a8481a40d291fbf8f6 /SConstruct
parent9cd9f3c73af6b6b7a58a01c2a887764bf145adfb (diff)
downloadgpsd-1c8f2ccb858a4ee4affb37a6805ffffac0fef665.tar.gz
Fix Savannah bug #36912: test_geoid: missing dependency.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index d3128e46..6c4cf27c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -942,7 +942,7 @@ if ncurseslibs:
# Test programs
test_float = env.Program('test_float', ['test_float.c'])
test_geoid = env.Program('test_geoid', ['test_geoid.c'], parse_flags=gpsdlibs)
-env.Depends(test_geoid, compiled_gpsdlib)
+env.Depends(test_geoid, compiled_gpsdlib, compiled_gpslib)
test_json = env.Program('test_json', ['test_json.c'], parse_flags=gpslibs)
env.Depends(test_json, compiled_gpslib)
test_mkgmtime = env.Program('test_mkgmtime', ['test_mkgmtime.c'], parse_flags=gpslibs)