]> granicus.if.org Git - docbook-dsssl/commitdiff
Fixed problem with man.output.* name conflict (forgot to update
authorMichael Smith <xmldoc@users.sourceforge.net>
Mon, 24 Apr 2006 02:29:31 +0000 (02:29 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Mon, 24 Apr 2006 02:29:31 +0000 (02:29 +0000)
names in previous commit).

xsl/manpages/utility.xsl

index a61df5fa327e6c0c0847bf20d59533527aaef8b5..d6492cd88c72026d49676b907d8ae356a6ae8ad6 100644 (file)
     <xsl:param name="dirname">
       <xsl:if test="not($man.output.in.separate.dir = 0)">
         <xsl:choose>
-          <xsl:when test="not($man.subdirs.enabled = 0)">
+          <xsl:when test="not($man.output.subdirs.enabled = 0)">
             <xsl:value-of
-                select="concat($man.base.dir, 'man', normalize-space($section), '/')"/>
+                select="concat($man.output.base.dir, 'man', normalize-space($section), '/')"/>
           </xsl:when>
           <xsl:otherwise>
-            <xsl:value-of select="$man.base.dir"/>
+            <xsl:value-of select="$man.output.base.dir"/>
           </xsl:otherwise>
         </xsl:choose>
       </xsl:if>