| Summary: | Cyrus IMAP port leaves behind directories after deinstall. | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | jagapen <jagapen> |
| Component: | Individual Port(s) | Assignee: | freebsd-ports (Nobody) <ports> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
State Changed From-To: open->closed Committed, thanks! |
A missing stdio re-direction in the Makefile for mail/cyrus means that a couple of @dirrm statements don't make it into the installed port's packing list. Upon de-installation, the ${PREFIX}/share/doc/cyrus directory gets left behind. Fix: 62,63c62,63 < @${ECHO} "@dirrm share/doc/cyrus/html" < @${ECHO} "@dirrm share/doc/cyrus" --- > @${ECHO} "@dirrm share/doc/cyrus/html" >>${TMPPLIST} > @${ECHO} "@dirrm share/doc/cyrus" >>${TMPPLIST} How-To-Repeat: Install and deinstall the Cyrus IMAP port.