[dhcp-agent-commits] dhcp-agent configure.ac,1.7,1.8
Status: Alpha
Brought to you by:
actmodern
From: <act...@us...> - 2003-06-09 00:34:51
|
Update of /cvsroot/dhcp-agent/dhcp-agent In directory sc8-pr-cvs1:/tmp/cvs-serv30176 Modified Files: configure.ac Log Message: fixed bug in checking for htmldoc; works now Index: configure.ac =================================================================== RCS file: /cvsroot/dhcp-agent/dhcp-agent/configure.ac,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** configure.ac 20 May 2003 00:32:30 -0000 1.7 --- configure.ac 9 Jun 2003 00:34:48 -0000 1.8 *************** *** 30,34 **** *) AC_MSG_ERROR(bad value ${enableval} for --enable-htmldoc) ;; ! esac],[debug=false]) AM_CONDITIONAL(HTMLDOC, test x$htmldoc = xtrue) --- 30,34 ---- *) AC_MSG_ERROR(bad value ${enableval} for --enable-htmldoc) ;; ! esac],[htmldoc=false]) AM_CONDITIONAL(HTMLDOC, test x$htmldoc = xtrue) *************** *** 172,176 **** fi ! if $htmldoc; then AC_PATH_PROGS(TEXI2HTML_PATH, [texi2html], [no]) --- 172,176 ---- fi ! if test x$htmldoc = "xtrue"; then AC_PATH_PROGS(TEXI2HTML_PATH, [texi2html], [no]) |