diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-09-15 19:37:05 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-09-15 19:37:05 +0000 |
commit | 3879ebc975aacd894f9d55b6f0a352c8ef260a1f (patch) | |
tree | 57fd24b7e1e3a9cbaedebf620e6e2f4a386de0a4 /Makefile | |
parent | 366c3401ec61789641d271e1f91fb13bb45d111b (diff) |
In XHTML output, readded the XML declaration
and changed the media type from text/html to application/xhtml+xml.
Done here to test possibles mirrors issues.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4171 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,9 @@ lfs: sh goTidy $(BASEDIR)/ + for filename in `find $(BASEDIR) -name "*.html"`; do \ + sed -i -e "s@text/html@application/xhtml+xml@g" $$filename; \ + done; # # This is the old "pdf" target. The old "print" target below has been # renamed to "pdf" and will be used. This commented out previous_pdf |