summaryrefslogtreecommitdiffstats
path: root/doc/user/variants.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/user/variants.xml')
-rw-r--r--doc/user/variants.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/user/variants.xml b/doc/user/variants.xml
index 6727859..3b570cd 100644
--- a/doc/user/variants.xml
+++ b/doc/user/variants.xml
@@ -49,7 +49,7 @@ is pretty smart about rebuilding things when you change options.
<para>
- The &build_dir; keyword argument of
+ The &variant_dir; keyword argument of
the &SConscript; function provides everything
we need to show how easy it is to create
variant builds using &SCons;.
@@ -78,7 +78,7 @@ is pretty smart about rebuilding things when you change options.
Export('env')
- env.SConscript('src/SConscript', build_dir='build/$PLATFORM')
+ env.SConscript('src/SConscript', variant_dir='build/$PLATFORM')
</programlisting>
<para>
@@ -123,7 +123,7 @@ is pretty smart about rebuilding things when you change options.
<file name="SConstruct" printme="1">
env = Environment(OS = ARGUMENTS.get('OS'))
for os in ['newell', 'post']:
- SConscript('src/SConscript', build_dir='build/' + os)
+ SConscript('src/SConscript', variant_dir='build/' + os)
</file>
</scons_example>