aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 26662461a..e0a48db8c 100644
--- a/Makefile
+++ b/Makefile
@@ -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)