diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -3,7 +3,6 @@ CHUNK_QUIET=0 PDF_OUTPUT=LFS-BOOK.pdf NOCHUNKS_OUTPUT=LFS-BOOK.html XSLROOTDIR=/usr/share/xml/docbook/xsl-stylesheets-current -TIDY=/home/manuel/bin/lfs-tidy lfs: xsltproc --xinclude --nonet -stringparam profile.condition html \ @@ -31,7 +30,7 @@ lfs: rm $(BASEDIR)/lfs-html.xml for filename in `find $(BASEDIR) -name "*.html"`; do \ - $(TIDY) -config tidy.conf $$filename; \ + tidy -config tidy.conf $$filename; \ true; \ done; @@ -70,7 +69,7 @@ nochunks: rm $(BASEDIR)/lfs-nochunk.xml - $(TIDY) -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true + tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true sed -i -e "s@text/html@application/xhtml+xml@g" \ $(BASEDIR)/$(NOCHUNKS_OUTPUT) |