diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2014-05-29 09:09:22 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-05-30 13:37:15 +0200 |
commit | b772ceb6e5cdda62aa98d4fc61f4800b9779b74a (patch) | |
tree | f5d5c99f6cce207d1474823c2b6843fea79535a2 /src/man/Makefile.am | |
parent | 7a6a7db9a535d6cceb61c080594c67feccbcea12 (diff) | |
download | sssd-b772ceb6e5cdda62aa98d4fc61f4800b9779b74a.tar.gz sssd-b772ceb6e5cdda62aa98d4fc61f4800b9779b74a.tar.xz sssd-b772ceb6e5cdda62aa98d4fc61f4800b9779b74a.zip |
man: Substitute entity values for entity references
Validation of xml files failed with new version of libxml2 (CVE-2014-0191)
make[2]: Entering directory `/builddir/build/BUILD/sssd-1.9.2/src/man'
/usr/bin/xmllint --catalogs --postvalid --nonet --xinclude --noout sss_usermod.8.xml
sss_usermod.8.xml:4: element reference: validity error : No declaration for element reference
sss_usermod.8.xml:5: element title: validity error : No declaration for element title
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Diffstat (limited to 'src/man/Makefile.am')
-rw-r--r-- | src/man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/man/Makefile.am b/src/man/Makefile.am index 58104dffc..03caef2ee 100644 --- a/src/man/Makefile.am +++ b/src/man/Makefile.am @@ -31,7 +31,7 @@ CONDS = with_false$(SUDO_CONDS)$(AUTOFS_CONDS)$(SSH_CONDS)$(PAC_RESPONDER_CONDS) export SGML_CATALOG_FILES DOCBOOK_XSLT = @DOCBOOK_XSLT@ DOCBOOK_XSLT ?= http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl -XMLLINT_FLAGS = --catalogs --postvalid --nonet --xinclude --noout +XMLLINT_FLAGS = --catalogs --postvalid --nonet --noent --xinclude --noout XSLTPROC_FLAGS = --catalogs --xinclude --nonet if HAVE_PROFILE_CATALOGS |