Details
Details
- Reviewers
antoine - Group Reviewers
portmgr - Commits
- rP413604: Extract the users/groups creation into a separate shell script.
Diff Detail
Diff Detail
- Repository
- rP FreeBSD ports repository
- Lint
No Lint Coverage - Unit
No Test Coverage - Build Status
Buildable 3247 Build 3280: arc lint + arc unit
Event Timeline
Comment Actions
I believe there is a problem (already existing) in bsd.port.mk:
for a in ${PKGPOSTDEINSTALL}; do \ [ -f $$a ] && ${CAT} $$a >> ${METADIR}/+POST_DEINSTALL ; \ done ; \ [ -f ${PKGPOSTDEINSTALL} ] && ${CP} ${PKGPOSTDEINSTALL} ${METADIR}/+POST_DEINSTALL; \
the last line will probably fail if there are several words in PKGPOSTDEINSTALL
Comment Actions
I don't really understand the last line of what you quoted. But I think it can just be removed.
@bapt ?
Comment Actions
Ok, the last line was a leftover, it's not needed at all, I removed it in rP413316. So that bit is fixed.