diff options
| author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-07-01 04:51:13 +0000 |
|---|---|---|
| committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-07-01 04:51:13 +0000 |
| commit | 1018684cf1fd0ffede27e6dfb88c6a9bf4d7cdf0 (patch) | |
| tree | 47ca246d15d0b5356c1672b9aea5649f8a9bd74e /textproc/scrollkeeper/pkg-install | |
| parent | 959e40478b87e9503eb7b9383472dfa2b61f57c8 (diff) | |
Notes
Diffstat (limited to 'textproc/scrollkeeper/pkg-install')
| -rw-r--r-- | textproc/scrollkeeper/pkg-install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/scrollkeeper/pkg-install b/textproc/scrollkeeper/pkg-install index ea42dfd90f4e..8c83f70aafa5 100644 --- a/textproc/scrollkeeper/pkg-install +++ b/textproc/scrollkeeper/pkg-install @@ -47,7 +47,7 @@ fi # # find the prefix for DocBook DTD # -found=`find ${PREFIX} -name docbookx.dtd 2> /dev/null` +found=`find -L ${PREFIX} -name docbookx.dtd 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate docbookx.dtd for DocBook XML exit 1 @@ -119,7 +119,7 @@ xmlcatalog --noout --add "delegateURI" \ # top=`dirname $docbookdir` found=`find $top -iname "iso*amsb.ent" 2> /dev/null` -found=`find ${PREFIX} -iname "iso*amsb.ent" 2> /dev/null` +found=`find -L ${PREFIX} -iname "iso*amsb.ent" 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate iso-amsb.ent of ISO DocBook entities exit 1 @@ -208,7 +208,7 @@ xmlcatalog --noout --add "delegatePublic" \ # top=`dirname $docbookdir` found=`find $top -name chunk.xsl 2> /dev/null` -found=`find ${PREFIX} -name chunk.xsl 2> /dev/null` +found=`find -L ${PREFIX} -name chunk.xsl 2> /dev/null` if [ "$found" = "" ] ; then echo could not locate chunk-common.xsl of DocBook XSLT stylesheets exit 1 |
