diff options
author | dinoex <dinoex@FreeBSD.org> | 2013-10-08 03:01:37 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2013-10-08 03:01:37 +0800 |
commit | 49125f44739922fa30174aa3689633d70eb3a0ae (patch) | |
tree | b603d7a50b985d7efb4a63581d069b4534ff745a /graphics | |
parent | d3e667f96c04eeb18986a4faedc1682fe85d9061 (diff) | |
download | freebsd-ports-gnome-49125f44739922fa30174aa3689633d70eb3a0ae.tar.gz freebsd-ports-gnome-49125f44739922fa30174aa3689633d70eb3a0ae.tar.zst freebsd-ports-gnome-49125f44739922fa30174aa3689633d70eb3a0ae.zip |
- fix option DOCBOOK
was broken by STAGEDIR r328096
PR: 182611
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/giflib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/giflib/Makefile b/graphics/giflib/Makefile index c0f7bac2e15f..70abb2e43aea 100644 --- a/graphics/giflib/Makefile +++ b/graphics/giflib/Makefile @@ -50,9 +50,9 @@ post-patch: .if ${PORT_OPTIONS:MDOCBOOK} && ${PORT_OPTIONS:MDOCS} post-install: - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${STAGEDIR}${DOCSDIR} .endif .include <bsd.port.post.mk> |