sbcl.sbcl/doc/make-doc.sh
William Harold Newman d1b34780e8 0.8.6.2:
trivial tidying in new XSL version of doc/
2003-11-26 15:16:06 +00:00

20 lines
372 B
Bash

#!/bin/sh
. ../find-gnumake.sh
find_gnumake
# Where is xsltproc?
if [ "" != "$XSLTPROC" ]; then
# The user has told us where to find xsltproc, good.
echo using XSLTPROC=$XSLTPROC
elif which xsltproc > /dev/null; then
# We have found it ourselves.
XSLTPROC=xsltproc
else
echo "can't find xsltproc, sorry"
exit 1
fi
export XSLTPROC
$GNUMAKE html