summaryrefslogtreecommitdiff
path: root/bin/docdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bin/docdiff')
-rw-r--r--bin/docdiff16
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