diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-09-24 17:56:21 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-09-24 17:56:21 +0000 |
commit | 9dda9514288ce47aad8c347466a49ba950214e4e (patch) | |
tree | f4a961d2cdabe5c90dd11839ed7a15528cca94a6 /Makefile | |
parent | 59ccb23e31e56931c3f929aec3453f6896bbe522 (diff) |
Fixed a typo in the Makefile.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4209 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,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; |