summaryrefslogtreecommitdiffstats
path: root/bin/docupdate
diff options
context:
space:
mode:
Diffstat (limited to 'bin/docupdate')
-rw-r--r--bin/docupdate8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/docupdate b/bin/docupdate
index c4eedb8..0e1631b 100644
--- a/bin/docupdate
+++ b/bin/docupdate
@@ -2,15 +2,15 @@
if test $# -eq 0; then
for f in doc/user/*.in; do
- sgml=doc/user/`basename $f .in`.sgml
+ xml=doc/user/`basename $f .in`.xml
echo $f:
- python bin/sconsoutput.py $f > $sgml
+ python bin/sconsoutput.py $f > $xml
done
else
for a in $*; do
f=doc/user/$a.in
- sgml=doc/user/$a.sgml
+ xml=doc/user/$a.xml
echo $f:
- python bin/sconsoutput.py $f > $sgml
+ python bin/sconsoutput.py $f > $xml
done
fi