Changeset 316 for releases

Show
Ignore:
Timestamp:
08/11/03 09:55:52 (5 years ago)
Author:
okir
Message:

- build fix for systems that dont have docbook.xsl

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • releases/openct-0.1.0/doc/Makefile.am

    r260 r316  
    55 
    66%.html: %.xml 
    7                 xsltproc -o $@ openct.xsl $<  
    8                 tidy -im -utf8 -xml $@ || true 
     7        @if [ -f /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/xhtml/docbook.xsl ]; then \ 
     8                echo xsltproc -o $@ openct.xsl $<; \ 
     9                xsltproc -o $@ openct.xsl $<; \ 
     10                echo tidy -im -utf8 -xml $@; \ 
     11                tidy -im -utf8 -xml $@ || true; \ 
     12        else \ 
     13                echo "docbook.xsl not installed, cannot generate $@ docs" >&2; \ 
     14                touch $@; \ 
     15        fi 
    916