Tidy is not needed anymore for BLFS tools.
This commit is contained in:
parent
4f3c433f7b
commit
78d47793a9
3 changed files with 2 additions and 14 deletions
|
@ -512,10 +512,6 @@ menu "--- BOOK Settings"
|
|||
bool "libxslt (required)"
|
||||
default y
|
||||
|
||||
config DEP_TIDY
|
||||
bool "tidy (required)"
|
||||
default y
|
||||
|
||||
config DEP_DBXML
|
||||
bool "DocBook XML DTD (required)"
|
||||
default y
|
||||
|
|
|
@ -233,17 +233,14 @@ inline_doc
|
|||
check_blfs_tools() { #
|
||||
#----------------------------#
|
||||
: << inline_doc
|
||||
In addition to the tools needed for the LFS part, tidy and docbook-xml
|
||||
are needed for installing the BLFS tools
|
||||
In addition to the tools needed for the LFS part, docbook-xml
|
||||
is needed for installing the BLFS tools
|
||||
inline_doc
|
||||
|
||||
# Avoid translation of version strings
|
||||
local LC_ALL=C
|
||||
export LC_ALL
|
||||
|
||||
tidyVer=$(tidy -V | cut -d " " -f9)
|
||||
check_version "2004" "${tidyVer}" "TIDY"
|
||||
|
||||
# Minimal docbook-xml code for testing
|
||||
XML_FILE="<?xml version='1.0' encoding='ISO-8859-1'?>
|
||||
<?xml-stylesheet type='text/xsl' href='http://docbook.sourceforge.net/release/xsl/1.69.1/xhtml/docbook.xsl'?>
|
||||
|
|
|
@ -58,11 +58,6 @@ if [ "$DEP_LIBXSLT" = y ]; then
|
|||
else
|
||||
LINE_LIBXSLT='#CONFIG_libxslt is not set'
|
||||
fi
|
||||
if [ "$DEP_TIDY" = y ]; then
|
||||
LINE_TIDY='CONFIG_html-tidy=y'
|
||||
else
|
||||
LINE_TIDY='#CONFIG_html-tidy is not set'
|
||||
fi
|
||||
# DocBook is a rec dep of libxslt
|
||||
# if [ "$DEP_DBXML" = y ]; then
|
||||
# LINE_DBXML='CONFIG_DocBook=y'
|
||||
|
|
Reference in a new issue