From 9d7d3567a81c074b99f6314e5d628bd6b828495d Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Fri, 29 Mar 2019 14:31:01 -0700 Subject: SConstruct: Add some comments about scons option cache --- SConstruct | 3 +++ 1 file changed, 3 insertions(+) (limited to 'SConstruct') 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)) -- cgit v1.2.1