summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-03-23 07:41:53 -0400
committerEric S. Raymond <esr@thyrsus.com>2015-03-23 07:41:53 -0400
commit922b4e05edd99f090e14f91d255d8744fd5741bc (patch)
tree11619bc5e651ccb14b23f1349352b70d3be1d120
parent901bfe301956707a971c45a589e3892247baacaf (diff)
downloadgpsd-922b4e05edd99f090e14f91d255d8744fd5741bc.tar.gz
Build simplification: remove an unnecessary environment clone.
All regression tests pass.
-rw-r--r--SConstruct4
1 files changed, 1 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 1cab97fa..f47561a7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1067,9 +1067,7 @@ gpsmon_sources = [
## Production programs
-gpsd_env = env.Clone()
-
-gpsd = gpsd_env.Program('gpsd', gpsd_sources, parse_flags = gpsdlibs)
+gpsd = env.Program('gpsd', gpsd_sources, parse_flags=gpsdlibs)
env.Depends(gpsd, [compiled_gpsdlib, compiled_gpslib])
gpsdecode = env.Program('gpsdecode', ['gpsdecode.c'], parse_flags=gpsdlibs)