summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugeniy Meshcheryakov <eugen@debian.org>2009-05-05 22:50:54 +0200
committerEugeniy Meshcheryakov <eugen@debian.org>2009-05-05 22:50:54 +0200
commit3f6d0896b990c586667d0de08ac85b18effb0274 (patch)
treeed3d2f35bec7200b8009a1cb316db53987ad5ae1
parenta8bd58464cf18a4d19168566714568d229929daa (diff)
downloadsystemtap-steved-3f6d0896b990c586667d0de08ac85b18effb0274.tar.gz
systemtap-steved-3f6d0896b990c586667d0de08ac85b18effb0274.tar.xz
systemtap-steved-3f6d0896b990c586667d0de08ac85b18effb0274.zip
Remove latex2html detection, it is not used anymore
-rw-r--r--configure.ac5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 50c17d9e..2a500f49 100644
--- a/configure.ac
+++ b/configure.ac
@@ -164,8 +164,7 @@ AC_ARG_ENABLE([docs],
AC_CHECK_PROG(have_latex, latex, yes, no)
AC_CHECK_PROG(have_dvips, dvips, yes, no)
AC_CHECK_PROG(have_ps2pdf, ps2pdf, yes, no)
-AC_CHECK_PROG(have_latex2html, latex2html, yes, no)
-if test "x${have_latex}${have_dvips}${have_ps2pdf}${have_latex2html}" != "xyesyesyesyes"; then
+if test "x${have_latex}${have_dvips}${have_ps2pdf}" != "xyesyesyes"; then
if test "$enable_docs" == "yes"; then
AC_MSG_ERROR([cannot find all tools for building documentation])
fi
@@ -173,7 +172,7 @@ if test "x${have_latex}${have_dvips}${have_ps2pdf}${have_latex2html}" != "xyesye
AC_MSG_WARN([will not build documentation, cannot find all tools])
fi
fi
-if test "x${have_latex}${have_dvips}${have_ps2pdf}${have_latex2html}" == "xyesyesyesyes" -a "$enable_docs" != "no"; then
+if test "x${have_latex}${have_dvips}${have_ps2pdf}" == "xyesyesyes" -a "$enable_docs" != "no"; then
building_docs="yes"
fi
AM_CONDITIONAL([BUILD_DOCS], [test "$building_docs" == "yes"])