diff options
author | Steven Knight <knight@baldmt.com> | 2003-09-25 05:18:23 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-09-25 05:18:23 (GMT) |
commit | 41a3eeec87272670f593f46ab8558d0ab99046f5 (patch) | |
tree | 99bf886e89cd998dd6a32bdeb6894f15243122ce /src/CHANGES.txt | |
parent | fd20ba3535a82bc7a6749d0020b344f4957ebc5d (diff) | |
download | SCons-41a3eeec87272670f593f46ab8558d0ab99046f5.zip SCons-41a3eeec87272670f593f46ab8558d0ab99046f5.tar.gz SCons-41a3eeec87272670f593f46ab8558d0ab99046f5.tar.bz2 |
Add more environment methods for global functions: Action(), Builder(), Environment(), Literal(), Platform(), Split(), Tool(). Deprecate ParseConfig() in favor of an environment method.
Diffstat (limited to 'src/CHANGES.txt')
-rw-r--r-- | src/CHANGES.txt | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 1ac0c21..692f3e3 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -58,12 +58,13 @@ RELEASE X.XX - XXX - Support arbitrary expansion of construction variables within file and directory arguments to Builder calls and Environment methods. - - Add Environment-method versions of the following global functions: - AddPreAction(), AddPostAction(), BuildDir(), CacheDir(), Clean(), - Default(), EnsurePythonVersion(), EnsureSConsVersion(), Exit(), - Export(), FindFile(), GetBuildPath(), GetOption(), Help(), - Import(), Local(), Repository(), SConsignFile(), SetOption(), - SourceSignatures(), TargetSignatures(). + - Add Environment-method versions of the following global + functions: Action(), AddPostAction(), AddPreAction(), Builder(), + BuildDir(), CacheDir(), Clean(), Default(), EnsurePythonVersion(), + EnsureSConsVersion(), Environment(), Exit(), Export(), FindFile(), + GetBuildPath(), GetOption(), Help(), Import(), Literal(), + Local(), Platform(), Repository(), SConsignFile(), SetOption(), + SourceSignatures(), Split(), TargetSignatures(), Tool(). - Add the following global functions that correspond to the same-named Environment methods: AlwaysBuild(), Command(), Depends(), Ignore(), @@ -86,6 +87,12 @@ RELEASE X.XX - XXX subclass of Environment.Base and setting a new Environment.Environment variable as the calling entry point. + - Deprecate the ParseConfig() global function in favor of a same-named + construction environment method. + + - Allow the Environment.WhereIs() method to take explicit path and + pathext arguments (like the underlying SCons.Util.WhereIs() function). + From Clark McGrew: - Generalize the action for .tex files so that it will decide whether |