Geert,

Geert Janssens <[email protected]> writes:

> Modified: gnucash-docs/trunk/epub.make
> ===================================================================
> --- gnucash-docs/trunk/epub.make      2012-11-01 17:37:17 UTC (rev 22483)
> +++ gnucash-docs/trunk/epub.make      2012-11-01 17:37:29 UTC (rev 22484)
> @@ -16,9 +16,9 @@
>       $(XSLTPROC) --stringparam base.dir OEBPS/ \
>                   --stringparam epub.metainf.dir META-INF/ \
>                   --stringparam epub.oebps.dir OEBPS/ \
> -                 ../../../xsl/1.75.2/epub/docbook.xsl \
> -                 ../$(docname).xml && \
> -     cp -L -R ../figures OEBPS/ && \
> +                 $(top_srcdir)/xsl/1.75.2/epub/docbook.xsl \
> +                 $(srcdir)/$(docname).xml && \
> +     cp -L -R $(srcdir)/figures OEBPS/ && \
>       zip -X -r ../$(epubfile) mimetype META-INF OEBPS && \
>       cd ..) && posthook=''; \
>       if test -d "$$EPUB_TMPDIR"; then \

I suspect this might have been the change that caused the docs build to
fail.  Here's the actual failure:

Making epub in C
make[2]: Entering directory `/u1/home/gnucash/gnucash-docs/trunk/guide/C'
EPUB_TMPDIR=`mktemp -d .epubtmpXXXXXXXX`; \
posthook='exit 1'; \
(cd "$EPUB_TMPDIR" && \
echo "application/epub+zip" > mimetype && \
/usr/bin/xsltproc --stringparam base.dir OEBPS/ \
            --stringparam epub.metainf.dir META-INF/ \
            --stringparam epub.oebps.dir OEBPS/ \
            ../../xsl/1.75.2/epub/docbook.xsl \
            ./gnucash-guide.xml && \
cp -L -R ./figures OEBPS/ && \
zip -X -r ../gnucash-guide.epub mimetype META-INF OEBPS && \
cd ..) && posthook=''; \
if test -d "$EPUB_TMPDIR"; then \
  rm -v -fr "$EPUB_TMPDIR"; \
fi; \
eval "$posthook";
warning: failed to load external entity "../../xsl/1.75.2/epub/docbook.xsl"
cannot parse ../../xsl/1.75.2/epub/docbook.xsl
removed `.epubtmpeiHuJMgA/mimetype'

Maybe change this to use abs_top_srcdir and abs_srcdir?  It looks like
the issue is the "cd $EPUB_TMPDIR", so it is changing one directory
deeper, so the relative *srcdir macros are wrong.

-derek

-- 
       Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
       Member, MIT Student Information Processing Board  (SIPB)
       URL: http://web.mit.edu/warlord/    PP-ASEL-IA     N1NWH
       [email protected]                        PGP key available
_______________________________________________
gnucash-devel mailing list
[email protected]
https://lists.gnucash.org/mailman/listinfo/gnucash-devel

Reply via email to