diff options
author | Steven Knight <knight@baldmt.com> | 2010-01-15 16:45:40 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-01-15 16:45:40 (GMT) |
commit | 05704f40dbf9a88df4f6ad8edf2182c8aadf3cce (patch) | |
tree | 31c7daea41fe0f20ffb73d7f970d8b8ad29b28e2 /bin/docdiff | |
parent | 358ca1aa92dbd377ad8d9bb9cfd9f4e3097c9893 (diff) | |
download | SCons-05704f40dbf9a88df4f6ad8edf2182c8aadf3cce.zip SCons-05704f40dbf9a88df4f6ad8edf2182c8aadf3cce.tar.gz SCons-05704f40dbf9a88df4f6ad8edf2182c8aadf3cce.tar.bz2 |
Rename the sconsoutput.py script to scons-doc.py, and refactor it to
support command-line option parsing and generating output on
streams other than sys.stdout.
Diffstat (limited to 'bin/docdiff')
-rw-r--r-- | bin/docdiff | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/docdiff b/bin/docdiff index c565a04..c7adb05 100644 --- a/bin/docdiff +++ b/bin/docdiff @@ -4,13 +4,13 @@ if test $# -eq 0; then for f in doc/user/*.in; do xml=doc/user/`basename $f .in`.xml echo $f: - python bin/sconsoutput.py $f | diff $DIFFFLAGS $xml - + python bin/scons-doc.py $f | diff $DIFFFLAGS $xml - done else for a in $*; do f=doc/user/$a.in xml=doc/user/$a.xml echo $f: - python bin/sconsoutput.py $f | diff $DIFFFLAGS $xml - + python bin/scons-doc.py $f | diff $DIFFFLAGS $xml - done fi |