diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-03-09 10:54:32 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-03-09 10:54:32 +0000 |
commit | 22a7840c7031d933c32b9c190e865fbabf798709 (patch) | |
tree | b50fd1563c59e91a89e0f65466c9e14f7b20f02b /doc/Makefile.am | |
parent | aa5db8243ca83c27c41a1957bd591faa8763581c (diff) | |
download | libxslt-22a7840c7031d933c32b9c190e865fbabf798709.tar.gz libxslt-22a7840c7031d933c32b9c190e865fbabf798709.tar.bz2 libxslt-22a7840c7031d933c32b9c190e865fbabf798709.zip |
fixed a build problem in some environements Daniel
* doc/Makefile.am: fixed a build problem in some environements
Daniel
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 1bd57a10..b4baaaa7 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -27,7 +27,8 @@ all : $(PAGES) web: $(PAGES) $(APIPAGES) $(PAGES): $(srcdir)/xslt.html $(srcdir)/site.xsl - ../xsltproc/xsltproc --html $(srcdir)/site.xsl $(srcdir)/xslt.html > index.html + -@(if [ -x $(bindir)/xsltproc ] ; then \ + $(bindir)/xsltproc --html $(srcdir)/site.xsl $(srcdir)/xslt.html > index.html ; fi ) $(APIPAGES): libxslt-refs.xml site.xsl api.xsl -@(if [ -x $(bindir)/xsltproc ] ; then \ |