Skip to content

Commit

Permalink
py-kiwisolver: fix post-destroot phase
Browse files Browse the repository at this point in the history
  • Loading branch information
reneeotten committed Aug 9, 2022
1 parent 8368f0d commit 12b3b95
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/py-kiwisolver/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ if {${name} ne ${subport}} {
post-destroot {
set docdir ${prefix}/share/doc/${subport}
xinstall -d ${destroot}${docdir}
xinstall -m 0644 -W ${worksrcpath} LICENSE README.rst \
${destroot}${docdir}
xinstall -m 0644 -W ${worksrcpath} README.rst ${destroot}${docdir}
if ${python.version} > 36} {

This comment has been minimized.

Copy link
@ajhall

ajhall Aug 9, 2022

Contributor

@reneeotten, I think there's a typo here: 36} should be 36. I made an unrelated PR and noticed that the build broke on this port.

This comment has been minimized.

Copy link
@herbygillot

herbygillot Aug 9, 2022

Member

Should be fixed by af2dbab

@ajhall, please rebase your PR.

This comment has been minimized.

Copy link
@reneeotten

reneeotten Aug 10, 2022

Author Contributor

thanks for fixing the typo @herbygillot !

xinstall -m 0644 -W ${worksrcpath} LICENSE ${destroot}${docdir}
}
}

test.run yes
Expand Down

1 comment on commit 12b3b95

@mascguy
Copy link
Member

@mascguy mascguy commented on 12b3b95 Aug 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@reneeotten These should probably be tested locally before committing... ;-)

Please sign in to comment.