[PATCH 2/2] Move 'make check' to Ubuntu 12.10.
Checking the Busingen patch caused me to realize I needed to upgrade the Makefile to match a new file location in Ubuntu 12.10. I pushed this to github as well and plan to put it into the next release. * Makefile (SGML_DTDDIR): New macro, for easier porting. Update to file name used in Ubuntu 12.10. (SGML_SEARCH_PATH): Use SGML_DTDDIR. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index feec727..2b256f5 100644 --- a/Makefile +++ b/Makefile @@ -246,9 +246,10 @@ AWK= awk KSHELL= /bin/bash # The path where SGML DTDs are kept. -# The default is appropriate for Ubuntu. +# The default is appropriate for Ubuntu 12.10. SGML_TOPDIR= /usr -SGML_SEARCH_PATH= $(SGML_TOPDIR)/share/xml/xhtml/schema/dtd/REC-html401-19991224 +SGML_DTDDIR= $(SGML_TOPDIR)/share/xml/w3c-sgml-lib/schema/dtd +SGML_SEARCH_PATH= $(SGML_DTDDIR)/REC-html401-19991224 # The catalog file(s) to use when validating. SGML_CATALOG_FILES= HTML4.cat -- 1.7.10.4
participants (1)
-
Paul Eggert