summaryrefslogtreecommitdiff
path: root/bin/docupdate
diff options
context:
space:
mode:
authorLuca Falavigna <dktrkranz@debian.org>2011-09-10 11:25:53 +0200
committerLuca Falavigna <dktrkranz@debian.org>2011-09-10 11:25:53 +0200
commitba4425ab5227fd9597fccd368bffff6bf1032149 (patch)
treeb286bf4e65900f6a7604c001dc2ad94fec12e768 /bin/docupdate
parent84c6f9729dbbc175431874957d0654310410bd6f (diff)
Imported Upstream version 2.1.0upstream/2.1.0
Diffstat (limited to 'bin/docupdate')
-rw-r--r--bin/docupdate16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/docupdate b/bin/docupdate
deleted file mode 100644
index cd9b532..0000000
--- a/bin/docupdate
+++ /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 > $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 > $xml
- done
-fi