aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2005-07-26 19:42:52 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2005-07-26 19:42:52 +0000
commit132fd161b77de7d324a153cc64665f71318f1c64 (patch)
tree495476fff4adf8c354c0809b48ba4cb68072c867 /Makefile
parent5844aed232d1adc92b6c5067c456f70401745826 (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--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6e35ef8c3..79e897c7a 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \