[libxslt] Error in doc/Makefile.am



commit 74eb9194fa086c4e57f23e058ed48a330ccdb986
Author: Brice De Bruyne <bricedb gmail com>
Date:   Wed Aug 26 22:37:44 2015 +0800

    Error in doc/Makefile.am
    
    I've stumbled upon an error in the doc/Makefile.am.
    
    Building the documentation from git master fails with:
    
    Making all in doc
    /bin/sh: -c: line 2: syntax error near unexpected token `)'
    /bin/sh: -c: line 2: `   /usr/bin/xsltproc --nonet ./xsltproc.xml );'
    
    Following patch to doc/Makefile.am fixes it.

 doc/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 48ad61c..a69995a 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -242,7 +242,7 @@ libxslt-api.xml libxslt-refs.xml EXSLT/libexslt-api.xml \
 xsltproc.1: $(srcdir)/xsltproc.xml
        -@(if [ -x $(XSLTPROC) ] ; then \
           echo "Rebuilding the man pages from the xml" ; \
-          $(XSLTPROC) --nonet $(srcdir)/xsltproc.xml );
+          $(XSLTPROC) --nonet $(srcdir)/xsltproc.xml ; fi)
 
 # Note that in the following, xmllint output is piped to xsltproc
 search.php: $(srcdir)/api.xsl $(srcdir)/site.xsl $(srcdir)/search.templ \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]