aboutsummaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
authordanfe <danfe@FreeBSD.org>2018-01-11 22:18:01 +0800
committerKoop Mast <kwm@rainbow-runner.nl>2018-02-04 06:22:30 +0800
commit571015546123021553fe7bdce7be2a346eca2faf (patch)
treea03389c683dc28e3b281b76c1bb8dbf6bee07984 /editors
parent472462823561f4f67165c505a1c40534eeadcde3 (diff)
downloadfreebsd-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/Makefile2
-rw-r--r--editors/micro/Makefile2
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>