diff options
author | Dirk Baechle <dl9obn@darc.de> | 2010-09-05 19:31:14 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2010-09-05 19:31:14 (GMT) |
commit | 0ca62b3c9a2d87df17ac4c37bbba9cbbdb4d9358 (patch) | |
tree | 3f2ed475b0630ae33d47541eee038f44c811574e /bin/docdiff | |
parent | 98240830ca84be4e8b07a499753a73feaf6ac3ae (diff) | |
download | SCons-0ca62b3c9a2d87df17ac4c37bbba9cbbdb4d9358.zip SCons-0ca62b3c9a2d87df17ac4c37bbba9cbbdb4d9358.tar.gz SCons-0ca62b3c9a2d87df17ac4c37bbba9cbbdb4d9358.tar.bz2 |
- moved the functionality of the bin/doc* shell scripts to scons-doc.py
- bin/doc* and sconsexample.py are not used anymore and get deleted
Diffstat (limited to 'bin/docdiff')
-rw-r--r-- | bin/docdiff | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/docdiff b/bin/docdiff deleted file mode 100644 index c7adb05..0000000 --- a/bin/docdiff +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -if test $# -eq 0; then - for f in doc/user/*.in; do - xml=doc/user/`basename $f .in`.xml - echo $f: - 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/scons-doc.py $f | diff $DIFFFLAGS $xml - - done -fi |