summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2018-02-09 18:49:38 +0100
committerStephen Hemminger <stephen@networkplumber.org>2018-02-13 16:43:19 -0800
commit8a237420f2051d6282262d33dbb3b10052fcfa61 (patch)
tree25395ef32d80acd9a8063c9d5cbd30261a9f0218 /configure
parentd7843207e6fda4ba22b88efbacd131b3c6d9c59f (diff)
downloadiproute2-8a237420f2051d6282262d33dbb3b10052fcfa61.tar.gz
Remove leftovers from removed Latex documentation
Since there is no documentation in Latex format left, there is no need to check for commands to build it. Also there is no need to ignore any of the temporary files which were created by them. Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 0 insertions, 17 deletions
diff --git a/configure b/configure
index d6832464..f7c2d7a7 100755
--- a/configure
+++ b/configure
@@ -17,18 +17,6 @@ check_prog()
command -v $1 >/dev/null 2>&1 && (echo "$3:=y" >> $CONFIG; echo "yes") || (echo "no"; return 1)
}
-check_docs()
-{
- if check_prog latex " latex: " HAVE_LATEX; then
- check_prog pdflatex " pdflatex: " HAVE_PDFLATEX || echo " WARNING: no PDF docs can be built from LaTeX files"
- check_prog sgml2latex " sgml2latex: " HAVE_SGML2LATEX || echo " WARNING: no LaTeX files can be build from SGML files"
- else
- echo " WARNING: no docs can be built from LaTeX files"
- fi
-
- check_prog sgml2html " sgml2html: " HAVE_SGML2HTML || echo " WARNING: no HTML docs can be built from SGML"
-}
-
check_toolchain()
{
: ${PKG_CONFIG:=pkg-config}
@@ -422,11 +410,6 @@ check_berkeley_db
echo -n "need for strlcpy: "
check_strlcpy
-echo
-echo -n "docs:"
-check_docs
-echo
-
echo >> $CONFIG
echo "%.o: %.c" >> $CONFIG
echo ' $(QUIET_CC)$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<' >> $CONFIG