diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-07-06 21:04:55 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2007-07-06 21:04:55 +0000 |
commit | c948b40772d679c96cffc260350a35b8c5e50b7a (patch) | |
tree | c103b08e77ac5da3e2be2899b7ce343bddbdb7a1 | |
parent | 6dd1a9fb95c590d9270ef26c267b624e9bb7b34e (diff) |
Fop requires $BASEDIR be created before generating the PDF
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8206 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -51,6 +51,9 @@ pdf: validxml $(Q)sed -i -e 's/span="inherit"/span="all"/' /tmp/lfs-pdf.fo @echo "Generating PDF file..." + $(Q)if [ ! -e $(BASEDIR) ]; then \ + mkdir -p $(BASEDIR); \ + fi; $(Q)fop /tmp/lfs-pdf.fo $(BASEDIR)/$(PDF_OUTPUT) nochunks: validxml profile-html |