diff options
author | Steven Knight <knight@baldmt.com> | 2005-08-11 03:13:30 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-08-11 03:13:30 (GMT) |
commit | fc4d126d2bf4ef98b4ca552e8a15c8ce77b16191 (patch) | |
tree | ec2f07126be67f66ae9fb53a31097a571d4d6c9d | |
parent | a2164ae582044afd661aaac55765db614dde9b4d (diff) | |
download | SCons-fc4d126d2bf4ef98b4ca552e8a15c8ce77b16191.zip SCons-fc4d126d2bf4ef98b4ca552e8a15c8ce77b16191.tar.gz SCons-fc4d126d2bf4ef98b4ca552e8a15c8ce77b16191.tar.bz2 |
Remove an old comment from DirScanner.py. (Chad Austin) Update overlooked changes in src/CHANGES.txt.
-rw-r--r-- | src/CHANGES.txt | 7 | ||||
-rw-r--r-- | src/engine/SCons/Scanner/Dir.py | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 545ef2a..8d39946 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -32,6 +32,10 @@ RELEASE 0.97 - XXX files so the same signature file can interoperate on Windows and non-Windows systems. + - Make --debug=stacktrace print a stacktrace when a UserError is thrown. + + - Remove an old, erroneous cut-and-paste comment in Scanner/Dir.py. + From Stanislav Baranov: - Make it possible to support with custom Alias (sub-)classes. @@ -63,6 +67,9 @@ RELEASE 0.97 - XXX - Fix an incorrect Command() keyword argument in the man page. + - Add a $TEMPFILEPREFIX variable to control the prefix or flag used + to pass a long-command-line-execution tempfile to a command. + From Eric Frias: - Huge performance improvement: wrap the tuples representing an diff --git a/src/engine/SCons/Scanner/Dir.py b/src/engine/SCons/Scanner/Dir.py index e89f12b..7c39f26 100644 --- a/src/engine/SCons/Scanner/Dir.py +++ b/src/engine/SCons/Scanner/Dir.py @@ -49,10 +49,7 @@ skip_entry = { def scan(node, env, path=()): """ - This scanner scans program files for static-library - dependencies. It will search the LIBPATH environment variable - for libraries specified in the LIBS variable, returning any - files it finds as dependencies. + This scanner scans a directory for on-disk files and directories therein. """ try: flist = node.fs.listdir(node.abspath) |