diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-11-15 18:44:15 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-11-15 18:44:15 +0800 |
commit | a7fb625c76f70c5169278ccfc173043f57210e7e (patch) | |
tree | 6c99927d18a6def8bd7c9c940918251b1fea97a3 | |
parent | 2ef74a504f100b1a78363deffd0ffef8a1756475 (diff) | |
download | freebsd-ports-gnome-a7fb625c76f70c5169278ccfc173043f57210e7e.tar.gz freebsd-ports-gnome-a7fb625c76f70c5169278ccfc173043f57210e7e.tar.zst freebsd-ports-gnome-a7fb625c76f70c5169278ccfc173043f57210e7e.zip |
- Support STAGEDIR
PR: ports/183963
Submitted by: Alan Hicks <ahicks@p-o.co.uk> (maintainer)
-rw-r--r-- | mail/gmime26/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/gmime26/Makefile b/mail/gmime26/Makefile index 505977250ee0..e87bcdb096a7 100644 --- a/mail/gmime26/Makefile +++ b/mail/gmime26/Makefile @@ -35,7 +35,6 @@ LATEST_LINK?= ${PORTNAME}26 OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include <bsd.port.options.mk> post-patch: @@ -46,9 +45,9 @@ post-patch: PORTDOCS= * post-install: - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in docs/reference/html/* - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif |