diff options
author | danfe <danfe@FreeBSD.org> | 2018-01-11 22:18:01 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 06:22:30 +0800 |
commit | 571015546123021553fe7bdce7be2a346eca2faf (patch) | |
tree | a03389c683dc28e3b281b76c1bb8dbf6bee07984 /editors | |
parent | 472462823561f4f67165c505a1c40534eeadcde3 (diff) | |
download | freebsd-ports-gnome-571015546123021553fe7bdce7be2a346eca2faf.tar.gz freebsd-ports-gnome-571015546123021553fe7bdce7be2a346eca2faf.tar.zst freebsd-ports-gnome-571015546123021553fe7bdce7be2a346eca2faf.zip |
Do not abuse INSTALL_MAN when installing documentation, examples, and
other miscellaneous files that are not actually manual pages (part 2).
Diffstat (limited to 'editors')
-rw-r--r-- | editors/dte/Makefile | 2 | ||||
-rw-r--r-- | editors/micro/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/dte/Makefile b/editors/dte/Makefile index 424e7dd6ed2b..67648fdab840 100644 --- a/editors/dte/Makefile +++ b/editors/dte/Makefile @@ -32,6 +32,6 @@ post-install: post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/editors/micro/Makefile b/editors/micro/Makefile index ba3b80f165c6..f7291a6933c0 100644 --- a/editors/micro/Makefile +++ b/editors/micro/Makefile @@ -48,6 +48,6 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/micro ${STAGEDIR}${PREFIX}/bin ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |