Changes between Version 39 and Version 40 of PortfileRecipes


Ignore:
Timestamp:
Jun 6, 2012, 3:34:42 PM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

docdir example: don't include destroot in docdir variable

Legend:

Unmodified
Added
Removed
Modified
  • PortfileRecipes

    v39 v40  
    199199{{{
    200200post-destroot {
    201     set docdir ${destroot}${prefix}/share/doc/${subport}
    202     xinstall -d ${docdir}
     201    set docdir ${prefix}/share/doc/${subport}
     202    xinstall -d ${destroot}${docdir}
    203203    xinstall -m 644 -W ${worksrcpath} \
    204204        AUTHORS \
     
    206206        NEWS \
    207207        README \
    208         ${docdir}
     208        ${destroot}${docdir}
    209209}
    210210}}}