aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-10-13 22:20:06 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-10-13 22:20:06 +0000
commit22f11a9db458bb00537fb161416e28d17e808e8f (patch)
treee06d855463d1c256a4871ba4057c115225734c98
parent9ff34df301e1d6e387fb691639b6a5ad6f574c29 (diff)
Removed the TIDY variable
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.0/BOOK@4287 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-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)