[BACK]Return to texi2html CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-doc

Annotation of OpenXM/src/asir-doc/texi2html, Revision 1.4

1.4     ! takayama    1: #!/bin/sh
        !             2: if [ ! `which perl` ]; then
        !             3:   echo "Perl is not installed. Error: texi2html is aborted."
        !             4:   exit 1
        !             5: fi
        !             6: if [ -x /usr/bin/texi2html ]; then
        !             7:   /usr/bin/texi2html $* ;
        !             8: elif [ -x /usr/local/bin/texi2html ]; then
        !             9:   /usr/local/bin/texi2html $* ;
1.3       takayama   10: else
1.4     ! takayama   11:   perl ./texi2html.perl $* ;
        !            12: fi
1.1       noro       13:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>