Poudriere testport logs available here:
Details
Details
Diff Detail
Diff Detail
- Repository
- rP FreeBSD ports repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
deskutils/deforaos-todo/Makefile | ||
---|---|---|
23–25 ↗ | (On Diff #14171) | Don't use += here, there's nothing to add to. (Well, unless there's a slave port, but I doubt it.) |
Comment Actions
If I didn't add this line:
MAKE_ENV+= MANDIR=${STAGEDIR}${MANPREFIX}/man
This port wants to install man page in ${PREFIX}/share/man in place of ${PREFIX}/man
Comment Actions
Yes, but why += ? There's no reference of that variable before, so you can replace the += with a =.
Comment Actions
It is a "cosmetic" change because it changes nothing in port. But, true, += is useless here. Approved in both case, but MAKE_ENV = is better.