summaryrefslogtreecommitdiffstats
path: root/doc/user/hierarchy.in
diff options
context:
space:
mode:
Diffstat (limited to 'doc/user/hierarchy.in')
-rw-r--r--doc/user/hierarchy.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/user/hierarchy.in b/doc/user/hierarchy.in
index 355aca3..2ec3fd3 100644
--- a/doc/user/hierarchy.in
+++ b/doc/user/hierarchy.in
@@ -638,7 +638,7 @@ make no difference to the build.
<sconstruct>
Import('env', 'debug')
- env = env.Copy(DEBUG = debug)
+ env = env.Clone(DEBUG = debug)
env.Program('prog', ['prog.c'])
</sconstruct>
@@ -652,7 +652,7 @@ make no difference to the build.
<sconstruct>
Import('env debug')
- env = env.Copy(DEBUG = debug)
+ env = env.Clone(DEBUG = debug)
env.Program('prog', ['prog.c'])
</sconstruct>
@@ -667,7 +667,7 @@ make no difference to the build.
<sconstruct>
Import('*')
- env = env.Copy(DEBUG = debug)
+ env = env.Clone(DEBUG = debug)
env.Program('prog', ['prog.c'])
</sconstruct>