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

File: [local] / OpenXM / src / asir-doc / Attic / texi2html (download)

Revision 1.5, Fri Aug 28 00:39:45 2020 UTC (3 years, 9 months ago) by takayama
Branch: MAIN
Changes since 1.4: +1 -1 lines

Output error/warning when texi2html is not installed.

#!/bin/sh
if [ ! `which perl` ]; then
  echo "Perl is not installed. Error: texi2html is aborted."
  exit 1
fi  
if [ -x /usr/bin/texi2html ]; then
  /usr/bin/texi2html $* ;
elif [ -x /usr/local/bin/texi2html ]; then
  /usr/local/bin/texi2html $* ;
else
  echo "Error or Warning: Using OpenXM_HOME in OpenXM/src/asir-doc/texi2html"; perl ${OpenXM_HOME}/src/asir-doc/texi2html.perl $* ;
fi