summaryrefslogtreecommitdiff
path: root/bin/docdiff
diff options
context:
space:
mode:
authorLuca Falavigna <dktrkranz@debian.org>2010-01-23 15:22:02 +0100
committerLuca Falavigna <dktrkranz@debian.org>2010-01-23 15:22:02 +0100
commit48f19e9e5ecc069f379ad433fdaf280ac9b54e16 (patch)
treeccb7df7851740465e630eeda7f618e66d1f86f53 /bin/docdiff
parent72c578fd4b0b4a5a43e18594339ac4ff26c376dc (diff)
Imported Upstream version 1.2.0.d20100117upstream/1.2.0.d20100117
Diffstat (limited to 'bin/docdiff')
-rw-r--r--bin/docdiff4
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