diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-04-15 15:43:03 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-04-15 15:43:03 +0000 |
commit | f3f808e6a5cbf4249ed71055967687167f9ccbcd (patch) | |
tree | 278aca956d6756a86b55c5f8e94c4d472b532e06 /Makefile | |
parent | a3b689f29d29dc318725594fe9b08d1482212ff8 (diff) |
Fix titles when sections are not labeled.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8046 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -47,12 +47,19 @@ wget-list: # rm $(BASEDIR)/lfs-pdf.xml $(BASEDIR)/lfs-pdf.fo # Remove this for testing and stable versions +pdf-orig: + xsltproc --xinclude --nonet --output $(BASEDIR)/fop-lfs-pdf.fo \ + stylesheets/lfs-pdf.xsl index.xml + sed -i -e 's/span="inherit"/span="all"/' $(BASEDIR)/fop-lfs-pdf.fo + fop.sh $(BASEDIR)/fop-lfs-pdf.fo $(BASEDIR)/fop-$(PDF_OUTPUT) +# rm $(BASEDIR)/fop-lfs-pdf.fo + pdf: - xsltproc --xinclude --nonet --output $(BASEDIR)/lfs-pdf.fo \ + xsltproc --xinclude --nonet --output $(BASEDIR)/fop1-lfs-pdf.fo \ stylesheets/lfs-pdf.xsl index.xml - sed -i -e "s/inherit/all/" $(BASEDIR)/lfs-pdf.fo - fop.sh $(BASEDIR)/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT) - rm $(BASEDIR)/lfs-pdf.fo + sed -i -e 's/span="inherit"/span="all"/' $(BASEDIR)/fop1-lfs-pdf.fo + FOP_HOME=~/cosas/fop-0,93 && ~/cosas/fop-0.93/fop $(BASEDIR)/fop1-lfs-pdf.fo $(BASEDIR)/fop1-$(PDF_OUTPUT) +# rm $(BASEDIR)/fop1-lfs-pdf.fo nochunks: xsltproc --xinclude --nonet -stringparam profile.condition html \ |