diff options
author | Vincent Batts <vbatts@spiderpig.awarix.com> | 2010-01-13 08:56:57 -0600 |
---|---|---|
committer | Vincent Batts <vbatts@spiderpig.awarix.com> | 2010-01-13 08:56:57 -0600 |
commit | 0f8d3039bc94693f7516f3011f0ffbc9cb2b66c6 (patch) | |
tree | 4effe2b370f323fa6713d653a127b7a2924f62d8 | |
parent | 6aaadea332fae5ce58a6c68cfea1c25770964dc8 (diff) | |
download | slackbook-0f8d3039bc94693f7516f3011f0ffbc9cb2b66c6.tar.xz |
updating the build script a smidgin'
-rw-r--r-- | build.sh | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1 +1,8 @@ -xsltproc -xinclude -o book.html /usr/share/sgml/docbook/docbook-xsl-1.75.1/html/docbook.xsl main.xml +#!/bin/sh +STYLE_SHEET="/usr/share/xml/docbook/xsl-stylesheets-1.75.1/html/docbook.xsl" + +xsltproc \ + -xinclude \ + -o book.html \ + $STYLE_SHEET \ + main.xml |