diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2008-09-20 15:42:15 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2008-09-20 15:42:15 (GMT) |
commit | efc3f9f021199529d94058930a0660008824f5c3 (patch) | |
tree | 845938f90ee0653bc647e91e54b1535e10fd6618 /doc/man/scons.1 | |
parent | 296ff7216f4a124df5206fb483b02d805c8b6678 (diff) | |
download | SCons-efc3f9f021199529d94058930a0660008824f5c3.zip SCons-efc3f9f021199529d94058930a0660008824f5c3.tar.gz SCons-efc3f9f021199529d94058930a0660008824f5c3.tar.bz2 |
Fix doc for r3436 (new delete_existing flags for Append/Prepend)
Diffstat (limited to 'doc/man/scons.1')
-rw-r--r-- | doc/man/scons.1 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 1d5142a..1e3e47b 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -2682,7 +2682,7 @@ env.Append(CCFLAGS = ' -g', FOO = ['foo.yyy']) '\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .TP -.RI env.AppendENVPath( name ", " newpath ", [" envname ", " sep ", " preserve_old_paths ]) +.RI env.AppendENVPath( name ", " newpath ", [" envname ", " sep ", " delete_existing ]) This appends new path elements to the given path in the specified external environment .RB ( ENV @@ -2700,8 +2700,8 @@ case where the given old path variable is a list instead of a string, in which case a list will be returned instead of a string. If -.I preserve_old_paths -is 1, then adding a path that already exists +.I delete_existing +is 0, then adding a path that already exists will not move it to the end; it will stay where it is in the list. Example: @@ -4886,7 +4886,7 @@ env.Prepend(CCFLAGS = '-g ', FOO = ['foo.yyy']) '\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .TP -.RI env.PrependENVPath( name ", " newpath ", [" envname ", " sep ", " preserve_old_paths ]) +.RI env.PrependENVPath( name ", " newpath ", [" envname ", " sep ", " delete_existing ]) This appends new path elements to the given path in the specified external environment .RB ( ENV @@ -4904,8 +4904,8 @@ case where the given old path variable is a list instead of a string, in which case a list will be returned instead of a string. If -.I preserve_old_paths -is 1, then adding a path that already exists +.I delete_existing +is 0, then adding a path that already exists will not move it to the beginning; it will stay where it is in the list. |