summaryrefslogtreecommitdiffstats
path: root/doc/user/run.in
diff options
context:
space:
mode:
Diffstat (limited to 'doc/user/run.in')
-rw-r--r--doc/user/run.in41
1 files changed, 0 insertions, 41 deletions
diff --git a/doc/user/run.in b/doc/user/run.in
index d8e19f8..0d3e7f0 100644
--- a/doc/user/run.in
+++ b/doc/user/run.in
@@ -373,44 +373,3 @@ do an unconstrained build before committing the integration).
</para>
</section>
-
- <section>
- <title>The &SCONSFLAGS; Environment Variable</title>
-
- <para>
-
- Users may find themselves supplying
- the same command-line options every time
- they run &SCons;.
- For example, a user might find that it saves time
- to always specify a value of <literal>-j 2</literal>
- to run the builds in parallel.
-
- </para>
-
- <scons_example name="SCONSFLAGS">
- <file name="SConstruct">
- def b(target, source, env):
- pass
- def s(target, source, env):
- return " ..."
- a = Action(b, strfunction = s)
- env = Environment(BUILDERS = {'A' : a})
- env.A('foo.out', 'foo.in')
- </file>
- <file name="foo.in">
- foo.in
- </file>
- </scons_example>
-
- <scons_output example="SCONSFLAGS">
- <command>scons</command>
- <command>export SCONSFLAGS="-Q"</command>
- <command>scons</command>
- </scons_output>
-
- <para>
-
- </para>
-
- </section>