[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. c6951885963c6cb94241592b5e2f7c335ece4f5c

git git at cross-lfs.org
Fri Jan 1 16:58:01 PST 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, master has been updated
       via  c6951885963c6cb94241592b5e2f7c335ece4f5c (commit)
       via  16ca115417ef22a2013f3d8a6824387e71219a16 (commit)
       via  ff39de2364a702a3bc296549ea9e37fe2900c36a (commit)
       via  bc7834de40250809ac9e786f1a8fc5fc426164e6 (commit)
       via  2b77c9d407993162f24698a167a5903fa95dd9a5 (commit)
       via  012dfcbd74e9bcb206393099534590fef4641a12 (commit)
      from  373b6ea0d35da92c81c315bf50b7a70b2f4a7f06 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c6951885963c6cb94241592b5e2f7c335ece4f5c
Author: Joe Ciccone <jciccone at gmail.com>
Date:   Fri Jan 1 19:57:36 2010 -0500

    Rearrange the makefile. Create a tidy.sh script to replace the tidy target and create a tidy target that calls this script. Also make sure that the rendertmp dir is available for whatever target needs it.

diff --git a/BOOK/Makefile b/BOOK/Makefile
index eb98afe..46ce7e3 100644
--- a/BOOK/Makefile
+++ b/BOOK/Makefile
@@ -31,46 +31,52 @@ else
   Q = @
 endif
 
-.PHONY: lfs tidy render titlepage $(ARCHS_HTML) nochunks $(ARCHS_NOCHUNKS) pdf \
-	$(ARCHS_PDF) validate $(ARCHS_VALIDATE) trouble $(ARCHS_TROUBLE) \
-	dump-commands $(ARCHS_DUMP) download-list $(ARCHS_DLLIST) tmpdir
+.PHONY: clfs lfs tidy render titlepage nochunks pdf validate trouble dump-commands \
+	download-list tmpdir $(ARCHS_HTML) $(ARCHS_NOCHUNKS) $(ARCHS_PDF) \
+	$(ARCHS_VALIDATE) $(ARCHS_TROUBLE) $(ARCHS_DUMP) $(ARCHS_DLLIST) tmpdir
 
-lfs: tmpdir render tidy
+clfs lfs: tmpdir render
+render: $(ARCHS_HTML) titlepage
+nochunks: tmpdir $(ARCHS_NOCHUNKS)
+pdf: tmpdir $(ARCHS_PDF)
+validate: $(ARCHS_VALIDATE)
+trouble: tmpdir $(ARCHS_TROUBLE)
+dump-commands: $(ARCHS_DUMP)
+download-list: $(ARCHS_DLLIST)
 
 tmpdir:
-	@echo "Creating and cleaning $(RENDERTMP)"
 	$(Q)[ -d $(RENDERTMP) ] || mkdir -p $(RENDERTMP)
-	$(Q)rm -f $(RENDERTMP)/*-{full,html,pdf}.xml
-	$(Q)rm -f $(RENDERTMP)/*.fo
 
 ifeq ($(shell which tidy >/dev/null 2>&1 && echo yes),yes)
 tidy:
-	@echo "Running tidy on the created HTML"
-	$(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
-	  tidy -config $(PWD)/tidy.conf $$filename; \
-	  true; \
-	  bash $(PWD)/obfuscate.sh $$filename; \
-	  sed -i -e "s at text/html at application/xhtml+xml at g" $$filename; \
-	done;
+	@$(MAKE) --no-print-directory tidy-d TIDY_DIR=$(BASEDIR)
+
+tidy-f:
+	@echo "Running tidy on F:$(shell basename $(TIDY_FILE))"
+	@$(TOP)/tidy.sh "$(TIDY_FILE)"
+
+tidy-d:
+	@echo "Running tidy on D:$(shell basename $(TIDY_DIR))"
+	@$(TOP)/tidy.sh "$(TIDY_DIR)"
 else
-tidy:
+tidy tidy-f tidy-d:
 	@echo "Tidy is not installed on this system"
 endif
 
-render: $(ARCHS_HTML) titlepage
-
 titlepage:
+	@echo "Rendering the top-level index..."
 	$(Q)xsltproc --nonet --output $(BASEDIR)/index.html \
 	  $(PWD)/stylesheets/top-index.xsl $(PWD)/index.xml
+	@$(MAKE) --no-print-directory tidy-f TIDY_FILE=$(BASEDIR)/index.html
 
 $(ARCHS_VD_XML): override validate_dump_xml_arch = $(@:%-validate_dump-xml=%)
-$(ARCHS_VD_XML):
+$(ARCHS_VD_XML): tmpdir
 	@echo "Validating $(validate_dump_xml_arch) book..."
 	$(Q)xmllint --nonet --noent --xinclude --postvalid \
 	  -o $(RENDERTMP)/$(validate_dump_xml_arch)-full.xml $(PWD)/$(validate_dump_xml_arch)-index.xml
 
 $(ARCHS_P_XML): override profiled_xml_arch = $(@:%-profiled-xml=%)
-$(ARCHS_P_XML):
+$(ARCHS_P_XML): tmpdir
 	@$(MAKE) --no-print-directory $(profiled_xml_arch)-validate_dump-xml
 
 	@echo "Generating profiled $(profiled_xml_arch) book for XHTML..."
@@ -79,7 +85,7 @@ $(ARCHS_P_XML):
 	  $(PWD)/stylesheets/lfs-xsl/profile.xsl $(RENDERTMP)/$(profiled_xml_arch)-full.xml
 
 $(ARCHS_HTML): override html_arch = $(@:%$(S)html=%)
-$(ARCHS_HTML):
+$(ARCHS_HTML): tmpdir
 	@$(MAKE) --no-print-directory $(html_arch)-profiled-xml
 
 	@echo "Rendering chunked XHTML of $(html_arch)..."
@@ -89,7 +95,7 @@ $(ARCHS_HTML):
 	  -stringparam base.dir $(BASEDIR)/$(html_arch)/ \
 	  $(PWD)/stylesheets/clfs-chunked.xsl $(RENDERTMP)/$(html_arch)-html.xml
 
-	@echo "Copying CSS code and images..."
+	@echo "Copying CSS code and images for $(html_arch)..."
 	$(Q)mkdir -p $(BASEDIR)/$(html_arch)/stylesheets
 	$(Q)cp $(PWD)/stylesheets/lfs-xsl/*.css $(BASEDIR)/$(html_arch)/stylesheets
 	$(Q)sed -i -e "s at ../stylesheets at stylesheets@g" $(BASEDIR)/$(html_arch)/*.html
@@ -97,10 +103,10 @@ $(ARCHS_HTML):
 	$(Q)cp $(PWD)/images/*.png $(BASEDIR)/$(html_arch)/images
 	$(Q)sed -i -e "s at ../images at images@g" $(BASEDIR)/$(html_arch)/*.html
 
-nochunks: tmpdir $(ARCHS_NOCHUNKS) tidy
+	@$(MAKE) --no-print-directory tidy-d TIDY_DIR=$(BASEDIR)/$(html_arch)
 
 $(ARCHS_NOCHUNKS): override nochunk_arch = $(@:%$(S)nochunks=%)
-$(ARCHS_NOCHUNKS):
+$(ARCHS_NOCHUNKS): tmpdir
 	@$(MAKE) --no-print-directory $(nochunk_arch)-profiled-xml
 
 	@echo "Rendering Single File HTML of $(nochunk_arch)..."
@@ -109,17 +115,10 @@ $(ARCHS_NOCHUNKS):
 	  --output $(BASEDIR)/CLFS-$(nochunk_arch).html \
 	  $(PWD)/stylesheets/clfs-nochunks.xsl $(RENDERTMP)/$(nochunk_arch)-html.xml
 
-	@echo "Running Tidy..."
-	$(Q)tidy -config $(PWD)/tidy.conf $(BASEDIR)/CLFS-$(nochunk_arch).html || true
-	@echo "Running obfuscate.sh..."
-	$(Q)bash $(PWD)/obfuscate.sh $(BASEDIR)/CLFS-$(nochunk_arch).html
-	$(Q)sed -i -e "s at text/html at application/xhtml+xml at g"  \
-	  $(BASEDIR)/CLFS-$(nochunk_arch).html
-
-pdf: tmpdir $(ARCHS_PDF)
+	@$(MAKE) --no-print-directory tidy-f TIDY_FILE=$(BASEDIR)/CLFS-$(nochunk_arch).html
 
 $(ARCHS_PDF): override pdf_arch =  $(@:%$(S)pdf=%)
-$(ARCHS_PDF):
+$(ARCHS_PDF): tmpdir
 	@$(MAKE) --no-print-directory $(pdf_arch)-profiled-xml
 
 	@echo "Generating FO file of $(pdf_arch)..."
@@ -132,25 +131,19 @@ $(ARCHS_PDF):
 	$(Q)mkdir -p $(BASEDIR)
 	$(Q)fop $(RENDERTMP)/$(pdf_arch).fo $(BASEDIR)/CLFS-$(pdf_arch).pdf
 
-validate: $(ARCHS_VALIDATE)
-
 $(ARCHS_VALIDATE): override validate_arch =  $(@:%$(S)validate=%)
 $(ARCHS_VALIDATE):
 	@echo "Validating $(validate_arch)..."
 	$(Q)xmllint --xinclude --noout --nonet --postvalid $(PWD)/$(validate_arch)-index.xml
 
-trouble: tmpdir $(ARCHS_TROUBLE)
-
 $(ARCHS_TROUBLE): override trouble_arch =  $(@:%$(S)trouble=%)
-$(ARCHS_TROUBLE):
+$(ARCHS_TROUBLE): tmpdir
 	@echo "Troubleshooting $(trouble_arch)..."
 	$(Q)xmllint --xinclude --nonet --postvalid \
 	  -o $(RENDERTMP)/dump-$(trouble_arch) $(PWD)/$(trouble_arch)-index.xml
 	$(Q)xmllint --xinclude --noout --nonet --valid $(RENDERTMP)/dump-$(trouble_arch)
 	@echo "You can now look at $(RENDERTMP)/dump-$(trouble_arch) to see the errors"
 
-dump-commands: $(ARCHS_DUMP)
-
 $(ARCHS_DUMP): override dump_arch =  $(@:%$(S)dump=%)
 $(ARCHS_DUMP):
 	@echo "Extracting commands from $(dump_arch)..."
@@ -158,8 +151,6 @@ $(ARCHS_DUMP):
 	$(Q)xsltproc --xinclude --nonet --output $(DUMPDIR)/$(dump_arch)/ \
 	  $(PWD)/stylesheets/dump-commands.xsl $(PWD)/$(dump_arch)-index.xml
 
-download-list: $(ARCHS_DLLIST)
-
 $(ARCHS_DLLIST): override dllist_arch = $(@:%$(S)dllist=%)
 $(ARCHS_DLLIST):
 	@echo "Creating download list for $(dllist_arch)..."
@@ -171,7 +162,7 @@ help:
 	@echo "Output: $(WORKDIR)"
 	@echo
 	@echo "HTML Targets"
-	@echo -e "  \e[0;32mlfs tidy render titlepage \e[0;34m$(ARCHS_HTML)\e[0;0m"
+	@echo -e "  \e[0;32mclfs lfs tidy render titlepage \e[0;34m$(ARCHS_HTML)\e[0;0m"
 	@echo
 	@echo "NoChunks Targets"
 	@echo -e "  \e[0;32mnochunks tidy \e[0;34m$(ARCHS_NOCHUNKS)\e[0;0m"
diff --git a/BOOK/tidy.sh b/BOOK/tidy.sh
new file mode 100755
index 0000000..1819f3b
--- /dev/null
+++ b/BOOK/tidy.sh
@@ -0,0 +1,23 @@
+#!/bin/sh
+# Written By: Joe Ciccone <jciccone at gmail.com>
+
+if test -z "$1"; then
+  echo "Usage: $0 path"
+  exit 1
+fi
+
+TOP=`dirname $0`
+
+if test -d "$1"; then
+  find "$1" -type f -name \*.html | while read file; do
+    tidy -config "${TOP}/tidy.conf" "$file"
+    bash "${TOP}/obfuscate.sh" "$file"
+    sed -i -e "s at text/html at application/xhtml+xml at g" "$file"
+  done
+else
+  tidy -config "${TOP}/tidy.conf" "$1"
+    bash "${TOP}/obfuscate.sh" "$1"
+    sed -i -e "s at text/html at application/xhtml+xml at g" "$1"
+fi
+
+exit $?

commit 16ca115417ef22a2013f3d8a6824387e71219a16
Author: Joe Ciccone <jciccone at gmail.com>
Date:   Fri Jan 1 18:56:20 2010 -0500

    Quiet a few more commands and clean up the terminal output.

diff --git a/BOOK/Makefile b/BOOK/Makefile
index 23abd47..eb98afe 100644
--- a/BOOK/Makefile
+++ b/BOOK/Makefile
@@ -71,7 +71,7 @@ $(ARCHS_VD_XML):
 
 $(ARCHS_P_XML): override profiled_xml_arch = $(@:%-profiled-xml=%)
 $(ARCHS_P_XML):
-	@$(MAKE) $(profiled_xml_arch)-validate_dump-xml
+	@$(MAKE) --no-print-directory $(profiled_xml_arch)-validate_dump-xml
 
 	@echo "Generating profiled $(profiled_xml_arch) book for XHTML..."
 	$(Q)xsltproc --nonet --stringparam profile.condition html \
@@ -80,7 +80,7 @@ $(ARCHS_P_XML):
 
 $(ARCHS_HTML): override html_arch = $(@:%$(S)html=%)
 $(ARCHS_HTML):
-	@$(MAKE) $(html_arch)-profiled-xml
+	@$(MAKE) --no-print-directory $(html_arch)-profiled-xml
 
 	@echo "Rendering chunked XHTML of $(html_arch)..."
 	$(Q)mkdir -p $(BASEDIR)/$(html_arch)
@@ -101,7 +101,7 @@ nochunks: tmpdir $(ARCHS_NOCHUNKS) tidy
 
 $(ARCHS_NOCHUNKS): override nochunk_arch = $(@:%$(S)nochunks=%)
 $(ARCHS_NOCHUNKS):
-	@$(MAKE) $(nochunk_arch)-profiled-xml
+	@$(MAKE) --no-print-directory $(nochunk_arch)-profiled-xml
 
 	@echo "Rendering Single File HTML of $(nochunk_arch)..."
 	$(Q)mkdir -p $(BASEDIR)
@@ -120,7 +120,7 @@ pdf: tmpdir $(ARCHS_PDF)
 
 $(ARCHS_PDF): override pdf_arch =  $(@:%$(S)pdf=%)
 $(ARCHS_PDF):
-	@$(MAKE) $(pdf_arch)-profiled-xml
+	@$(MAKE) --no-print-directory $(pdf_arch)-profiled-xml
 
 	@echo "Generating FO file of $(pdf_arch)..."
 	$(Q)xsltproc --nonet -stringparam rootid "$(ROOT_ID)" \

commit ff39de2364a702a3bc296549ea9e37fe2900c36a
Author: Joe Ciccone <jciccone at gmail.com>
Date:   Fri Jan 1 18:53:45 2010 -0500

    Split the validate dump part of the render into its own make target.

diff --git a/BOOK/Makefile b/BOOK/Makefile
index 42c0769..23abd47 100644
--- a/BOOK/Makefile
+++ b/BOOK/Makefile
@@ -14,6 +14,7 @@ S		:= -
 ARCHS		:= x86 x86_64 x86_64-64 sparc sparc64 sparc64-64 mips mips64 mips64-64 \
 		   ppc ppc64 alpha
 
+ARCHS_VD_XML	:= $(ARCHS:%=%-validate_dump-xml)
 ARCHS_P_XML	:= $(ARCHS:%=%-profiled-xml)
 
 ARCHS_HTML	:= $(ARCHS:%=%$(S)html)
@@ -62,11 +63,15 @@ titlepage:
 	$(Q)xsltproc --nonet --output $(BASEDIR)/index.html \
 	  $(PWD)/stylesheets/top-index.xsl $(PWD)/index.xml
 
+$(ARCHS_VD_XML): override validate_dump_xml_arch = $(@:%-validate_dump-xml=%)
+$(ARCHS_VD_XML):
+	@echo "Validating $(validate_dump_xml_arch) book..."
+	$(Q)xmllint --nonet --noent --xinclude --postvalid \
+	  -o $(RENDERTMP)/$(validate_dump_xml_arch)-full.xml $(PWD)/$(validate_dump_xml_arch)-index.xml
+
 $(ARCHS_P_XML): override profiled_xml_arch = $(@:%-profiled-xml=%)
 $(ARCHS_P_XML):
-	@echo "Validating $(profiled_xml_arch) book..."
-	$(Q)xmllint --nonet --noent --xinclude --postvalid \
-	  -o $(RENDERTMP)/$(profiled_xml_arch)-full.xml $(PWD)/$(profiled_xml_arch)-index.xml
+	@$(MAKE) $(profiled_xml_arch)-validate_dump-xml
 
 	@echo "Generating profiled $(profiled_xml_arch) book for XHTML..."
 	$(Q)xsltproc --nonet --stringparam profile.condition html \

commit bc7834de40250809ac9e786f1a8fc5fc426164e6
Author: Joe Ciccone <jciccone at gmail.com>
Date:   Fri Jan 1 18:44:49 2010 -0500

    Generate the profiled XML in its own make target.

diff --git a/BOOK/Makefile b/BOOK/Makefile
index e686156..42c0769 100644
--- a/BOOK/Makefile
+++ b/BOOK/Makefile
@@ -7,13 +7,15 @@ DUMPDIR		:= $(WORKDIR)/cross-lfs-commands
 DLLISTDIR	:= $(WORKDIR)/cross-lfs-dllist
 RENDERTMP       := $(WORKDIR)/tmp
 CHUNK_QUIET	:= 1
-ROOT_ID         :=
+ROOT_ID	 :=
 
 S		:= -
 
 ARCHS		:= x86 x86_64 x86_64-64 sparc sparc64 sparc64-64 mips mips64 mips64-64 \
 		   ppc ppc64 alpha
 
+ARCHS_P_XML	:= $(ARCHS:%=%-profiled-xml)
+
 ARCHS_HTML	:= $(ARCHS:%=%$(S)html)
 ARCHS_NOCHUNKS	:= $(ARCHS:%=%$(S)nochunks)
 ARCHS_PDF	:= $(ARCHS:%=%$(S)pdf)
@@ -60,16 +62,20 @@ titlepage:
 	$(Q)xsltproc --nonet --output $(BASEDIR)/index.html \
 	  $(PWD)/stylesheets/top-index.xsl $(PWD)/index.xml
 
-$(ARCHS_HTML): override html_arch = $(@:%$(S)html=%)
-$(ARCHS_HTML):
-	@echo "Validating $(html_arch) book..."
+$(ARCHS_P_XML): override profiled_xml_arch = $(@:%-profiled-xml=%)
+$(ARCHS_P_XML):
+	@echo "Validating $(profiled_xml_arch) book..."
 	$(Q)xmllint --nonet --noent --xinclude --postvalid \
-	  -o $(RENDERTMP)/$(html_arch)-full.xml $(PWD)/$(html_arch)-index.xml
+	  -o $(RENDERTMP)/$(profiled_xml_arch)-full.xml $(PWD)/$(profiled_xml_arch)-index.xml
 
-	@echo "Generating profiled $(html_arch) book for XHTML..."
+	@echo "Generating profiled $(profiled_xml_arch) book for XHTML..."
 	$(Q)xsltproc --nonet --stringparam profile.condition html \
-	  --output $(RENDERTMP)/$(html_arch)-html.xml \
-	  $(PWD)/stylesheets/lfs-xsl/profile.xsl $(RENDERTMP)/$(html_arch)-full.xml
+	  --output $(RENDERTMP)/$(profiled_xml_arch)-html.xml \
+	  $(PWD)/stylesheets/lfs-xsl/profile.xsl $(RENDERTMP)/$(profiled_xml_arch)-full.xml
+
+$(ARCHS_HTML): override html_arch = $(@:%$(S)html=%)
+$(ARCHS_HTML):
+	@$(MAKE) $(html_arch)-profiled-xml
 
 	@echo "Rendering chunked XHTML of $(html_arch)..."
 	$(Q)mkdir -p $(BASEDIR)/$(html_arch)
@@ -90,15 +96,7 @@ nochunks: tmpdir $(ARCHS_NOCHUNKS) tidy
 
 $(ARCHS_NOCHUNKS): override nochunk_arch = $(@:%$(S)nochunks=%)
 $(ARCHS_NOCHUNKS):
-	@echo "Validating $(nochunk_arch) book..."
-	$(Q)xmllint --nonet --noent --xinclude --postvalid \
-	  -o $(RENDERTMP)/$(nochunk_arch)-full.xml $(PWD)/$(nochunk_arch)-index.xml
-
-	@echo "Generating profiled $(nochunk_arch) book for XHTML..."
-	$(Q)xsltproc --nonet --stringparam profile.condition html \
-	  --output $(RENDERTMP)/$(nochunk_arch)-html.xml \
-	  $(PWD)/stylesheets/lfs-xsl/profile.xsl \
-	  $(RENDERTMP)/$(nochunk_arch)-full.xml
+	@$(MAKE) $(nochunk_arch)-profiled-xml
 
 	@echo "Rendering Single File HTML of $(nochunk_arch)..."
 	$(Q)mkdir -p $(BASEDIR)
@@ -117,15 +115,7 @@ pdf: tmpdir $(ARCHS_PDF)
 
 $(ARCHS_PDF): override pdf_arch =  $(@:%$(S)pdf=%)
 $(ARCHS_PDF):
-	@echo "Validating $(pdf_arch) book..."
-	$(Q)xmllint --nonet --noent --xinclude --postvalid \
-	  -o $(RENDERTMP)/$(pdf_arch)-full.xml $(PWD)/$(pdf_arch)-index.xml
-
-	@echo "Generating profiled $(pdf_arch) book for PDF..."
-	$(Q)xsltproc --nonet --stringparam profile.condition pdf \
-	  --output $(RENDERTMP)/$(pdf_arch)-pdf.xml \
-	  $(PWD)/stylesheets/lfs-xsl/profile.xsl \
-	  $(RENDERTMP)/$(pdf_arch)-full.xml
+	@$(MAKE) $(pdf_arch)-profiled-xml
 
 	@echo "Generating FO file of $(pdf_arch)..."
 	$(Q)xsltproc --nonet -stringparam rootid "$(ROOT_ID)" \

commit 2b77c9d407993162f24698a167a5903fa95dd9a5
Author: Joe Ciccone <jciccone at gmail.com>
Date:   Fri Jan 1 18:28:59 2010 -0500

    Do all the work in a temporary directory in the book tree. Also add a .gitignore to prevent git from trying to commit these files.

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8944128
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+BOOK/render-output
diff --git a/BOOK/Makefile b/BOOK/Makefile
index 42a29f6..e686156 100644
--- a/BOOK/Makefile
+++ b/BOOK/Makefile
@@ -1,7 +1,11 @@
-BASEDIR		:= ~/cross-lfs-book
-DUMPDIR		:= ~/cross-lfs-commands
-DLLISTDIR	:= ~/cross-lfs-dllist
-RENDERTMP       := $(HOME)/tmp
+TOP		:= $(PWD)
+
+WORKDIR		:= $(TOP)/render-output
+
+BASEDIR		:= $(WORKDIR)/cross-lfs-book
+DUMPDIR		:= $(WORKDIR)/cross-lfs-commands
+DLLISTDIR	:= $(WORKDIR)/cross-lfs-dllist
+RENDERTMP       := $(WORKDIR)/tmp
 CHUNK_QUIET	:= 1
 ROOT_ID         :=
 
@@ -169,6 +173,8 @@ $(ARCHS_DLLIST):
 	  $(PWD)/stylesheets/wget.xsl $(PWD)/$(dllist_arch)-index.xml
 
 help:
+	@echo "Output: $(WORKDIR)"
+	@echo
 	@echo "HTML Targets"
 	@echo -e "  \e[0;32mlfs tidy render titlepage \e[0;34m$(ARCHS_HTML)\e[0;0m"
 	@echo

commit 012dfcbd74e9bcb206393099534590fef4641a12
Author: Joe Ciccone <jciccone at gmail.com>
Date:   Fri Jan 1 18:18:10 2010 -0500

    Don't generate the download list with the html. If the user wants it they can request it.

diff --git a/BOOK/Makefile b/BOOK/Makefile
index 4504695..42a29f6 100644
--- a/BOOK/Makefile
+++ b/BOOK/Makefile
@@ -81,7 +81,6 @@ $(ARCHS_HTML):
 	$(Q)mkdir -p $(BASEDIR)/$(html_arch)/images
 	$(Q)cp $(PWD)/images/*.png $(BASEDIR)/$(html_arch)/images
 	$(Q)sed -i -e "s at ../images at images@g" $(BASEDIR)/$(html_arch)/*.html
-	$(Q)$(MAKE) ARCHS=$(html_arch) DLLISTDIR=$(BASEDIR) download-list
 
 nochunks: tmpdir $(ARCHS_NOCHUNKS) tidy
 

-----------------------------------------------------------------------

Summary of changes:
 .gitignore    |    1 +
 BOOK/Makefile |  131 ++++++++++++++++++++++++++------------------------------
 BOOK/tidy.sh  |   23 ++++++++++
 3 files changed, 85 insertions(+), 70 deletions(-)
 create mode 100644 .gitignore
 create mode 100755 BOOK/tidy.sh


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list