| Summary: | [patch] mail/enigmail-thunderbird - remove non-existing path in EXTRACT_DEPENDS | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | edwin |
| Component: | Individual Port(s) | Assignee: | Alex Dupre <ale> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
Responsible Changed From-To: freebsd-ports-bugs->ale Over to maintainer (via the GNATS Auto Assign Tool) State Changed From-To: open->closed Committed. ale 2008-07-31 06:03:57 UTC
FreeBSD ports repository
Modified files:
mail/enigmail Makefile
mail/enigmail-thunderbird Makefile
Log:
Use ${NONEXISTENT} for dependencies that will not be installed.
PR: ports/126110
Submitted by: edwin
Revision Changes Path
1.46 +1 -1 ports/mail/enigmail-thunderbird/Makefile
1.42 +1 -1 ports/mail/enigmail/Makefile
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
|
EXTRACT_DEPENDS=${GECKO_WRKSRC}/configure:${PORTSDIR}/${GECKO_PORTDIR}:patch GECKO_WRKSRC is set to: /usr/ports/mail/enigmail-thunderbird/work/../../../mail/thunderbird/work/mozilla That directory "/usr/ports/mail/enigmail-thunderbird/work/" doesn't exist until the do-extract target has failed, so this file ${GECKO_WRKSRC}/configure never exists so this check always fails. It is better to replace it with: EXTRACT_DEPENDS=${NONEXISTENT}:${PORTSDIR}/${GECKO_PORTDIR}:patch so that the patch in ports/116601 can get commited too!