diff options
-rw-r--r-- | build.sh | 4 | ||||
-rw-r--r-- | chapter_03.xml | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,9 @@ #!/bin/sh STYLE_SHEET="/usr/share/xml/docbook/xsl-stylesheets-1.75.1/html/docbook.xsl" +if [ ! -r "$STYLE_SHEET" ] ; then + STYLE_SHEET=$(find /usr/share/xml -name docbook.xsl | grep /html/) + echo using $STYLE_SHEET instead +fi xsltproc \ -xinclude \ diff --git a/chapter_03.xml b/chapter_03.xml index 5c63c48..6a00ef1 100644 --- a/chapter_03.xml +++ b/chapter_03.xml @@ -196,6 +196,7 @@ ROOTFS="ext4" #RAID="0" LVM="1" #WAIT="1" +</prompt> </screen> <para> |