diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-11-15 18:44:23 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-11-15 18:44:23 +0800 |
commit | c1e7c7ecb2093cffcefc90d4c4e166639d4323c8 (patch) | |
tree | 30ed9aa66e4548171a63c675e3b033f61e5b8eb9 /mail | |
parent | e336c4d56995aa22d082b2f69352a246fd43ab42 (diff) | |
download | freebsd-ports-gnome-c1e7c7ecb2093cffcefc90d4c4e166639d4323c8.tar.gz freebsd-ports-gnome-c1e7c7ecb2093cffcefc90d4c4e166639d4323c8.tar.zst freebsd-ports-gnome-c1e7c7ecb2093cffcefc90d4c4e166639d4323c8.zip |
- Support STAGEDIR
PR: ports/183965
Submitted by: Alan Hicks <ahicks@p-o.co.uk> (maintainer)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/gmime24/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/gmime24/Makefile b/mail/gmime24/Makefile index 2794ad5c53c6..7d7280eb9c43 100644 --- a/mail/gmime24/Makefile +++ b/mail/gmime24/Makefile @@ -38,7 +38,6 @@ OPTIONS_DEFINE= DOCS PORTDOCS= * -NO_STAGE= yes .include <bsd.port.options.mk> post-patch: @@ -47,9 +46,9 @@ post-patch: post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in docs/reference/html/* - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif |