summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2019-03-29 14:31:01 -0700
committerGary E. Miller <gem@rellim.com>2019-03-29 14:31:01 -0700
commit9d7d3567a81c074b99f6314e5d628bd6b828495d (patch)
tree1d1e4c21f783724bb3ad7f06ad633d5c026868ab /SConstruct
parent10fb1c843f33073adece304b9593a0bc58aa4c7a (diff)
downloadgpsd-9d7d3567a81c074b99f6314e5d628bd6b828495d.tar.gz
SConstruct: Add some comments about scons option cache
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 92733972..1fffe57f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -237,6 +237,7 @@ boolopts = (
("slow", False, "run tests with realistic (slow) delays"),
)
+# now step on the boolopts just read from '.scons-option-cache'
for (name, default, help) in boolopts:
opts.Add(BoolVariable(name, help, default))
@@ -262,6 +263,7 @@ nonboolopts = (
("target_python", "python", "target Python version as command"),
)
+# now step on the non boolopts just read from '.scons-option-cache'
for (name, default, help) in nonboolopts:
opts.Add(name, help, default)
@@ -277,6 +279,7 @@ pathopts = (
("udevdir", "/lib/udev", "udev rules directory"),
)
+# now step on the path options just read from '.scons-option-cache'
for (name, default, help) in pathopts:
opts.Add(PathVariable(name, help, default, PathVariable.PathAccept))