Changed to use chunk.xsl instaed of chunk-common.xsl as 1.48 changed

to remove that specific file, Daniel
This commit is contained in:
Daniel Veillard 2002-01-30 10:47:44 +00:00
parent 8ee9c8f6c4
commit 05d39112d4

View File

@ -224,18 +224,18 @@ xmlcatalog --noout --add "delegatePublic" \
# find the prefix for XSLT stylesheets
#
top=`dirname $docbookdir`
found=`find $top -name chunk-common.xsl`
found=`find $top -name chunk.xsl`
if [ "$found" = "" ] ; then
found=`find /usr/share/xml -name chunk-common.xsl`
found=`find /usr/share/xml -name chunk.xsl`
fi
if [ "$found" = "" ] ; then
found=`find $HOME -name chunk-common.xsl`
found=`find $HOME -name chunk.xsl`
fi
if [ "$found" = "" ] ; then
found=`find /usr/local -name chunk-common.xsl`
found=`find /usr/local -name chunk.xsl`
fi
if [ "$found" = "" ] ; then
found=`find /usr/share/sgml -name chunk-common.xsl`
found=`find /usr/share/sgml -name chunk.xsl`
fi
if [ "$found" = "" ] ; then
echo could not locate chunk-common.xsl of DocBook XSLT stylesheets