diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-07-26 19:42:52 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-07-26 19:42:52 +0000 |
commit | 132fd161b77de7d324a153cc64665f71318f1c64 (patch) | |
tree | 495476fff4adf8c354c0809b48ba4cb68072c867 /Makefile | |
parent | 5844aed232d1adc92b6c5067c456f70401745826 (diff) |
* Move HTML tidy to run before obfuscate.sh as they behave badly otherwise (bug 1594)
* Add Greg Schafer's email address in the acknowledgements
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6583 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,12 +25,12 @@ lfs: *.html for filename in `find $(BASEDIR) -name "*.html"`; do \ - sh obfuscate.sh $$filename; \ + tidy -config tidy.conf $$filename; \ + true; \ done; for filename in `find $(BASEDIR) -name "*.html"`; do \ - tidy -config tidy.conf $$filename; \ - true; \ + sh obfuscate.sh $$filename; \ done; for filename in `find $(BASEDIR) -name "*.html"`; do \ |