summaryrefslogtreecommitdiff
path: root/backends/texi.in
blob: ab838d23ec06917415d2b253e52a729b259d3258 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Backend to convert a DocBook file into a texinfo file
# Send any comments to Jochem Huhmann <joh@revier.com>
# This program is under GPL license. See LICENSE file for details.

# Convert to texinfo
nsgmls $SGML_FILE | sgmlspl $SGML_BASE_DIR/docbook/utils-@VERSION@/helpers/docbook2texi-spec.pl >$SGML_FILE_NAME.texi
if [ $? -ne 0 ]
then exit 1
fi

exit 0