diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-10-13 22:22:53 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-10-13 22:22:53 +0000 |
commit | 12043d221f954d6cace8059a0b2075f6c32b36a5 (patch) | |
tree | 8dde74fd885eab5e9992b9d70290fa8b40e61e03 | |
parent | 1cbea46700082c8f3dfaf683817b9bf0c124036c (diff) |
Removed the TIDY variable
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4288 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 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 chunk.quietly $(CHUNK_QUIET) \ @@ -26,7 +25,7 @@ lfs: index.html part1.html part2.html part3.html longindex.html for filename in `find $(BASEDIR) -name "*.html"`; do \ - $(TIDY) -config tidy.conf $$filename; \ + tidy -config tidy.conf $$filename; \ true; \ done; |