projects
/
profile
/
ivi
/
docbook-utils.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
TIVI-153: add as dependency for iputils
[profile/ivi/docbook-utils.git]
/
backends
/
tex
1
# Backend to convert something into TeX
2
# Send any comments to Eric Bischoff <eric@caldera.de>
3
# This program is under GPL license. See LICENSE file for details.
4
5
# Convert to TeX
6
$SGML_JADE -t tex -o ${SGML_FILE_NAME}.tex $SGML_ARGUMENTS
7
if [ $? -ne 0 ]
8
then exit 1
9
fi
10
11
exit 0