diff options
author | danfe <danfe@FreeBSD.org> | 2018-01-11 22:18:01 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2018-01-11 22:18:01 +0800 |
commit | 95792be7511c5ce42ec90c098ec151521bc25398 (patch) | |
tree | b20e8fa39d7f47e5ac65570524af39804107f1d1 /lang | |
parent | e287393ededca400d34a0da59555da4c19cfbdf6 (diff) | |
download | freebsd-ports-gnome-95792be7511c5ce42ec90c098ec151521bc25398.tar.gz freebsd-ports-gnome-95792be7511c5ce42ec90c098ec151521bc25398.tar.zst freebsd-ports-gnome-95792be7511c5ce42ec90c098ec151521bc25398.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 'lang')
-rw-r--r-- | lang/execline/Makefile | 2 | ||||
-rw-r--r-- | lang/ici/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lang/execline/Makefile b/lang/execline/Makefile index ee73c83734cf..a52de49917fc 100644 --- a/lang/execline/Makefile +++ b/lang/execline/Makefile @@ -37,6 +37,6 @@ post-install: post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_MAN} ${DOCS} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/lang/ici/Makefile b/lang/ici/Makefile index fd587c9f5273..71b1c8c681f2 100644 --- a/lang/ici/Makefile +++ b/lang/ici/Makefile @@ -33,7 +33,7 @@ do-install: .endfor ${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ici4 .for f in ${ICIDOCS} - ${INSTALL_MAN} ${WRKSRC}/$f ${STAGEDIR}${PREFIX}/share/doc/ici4 + ${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${PREFIX}/share/doc/ici4 .endfor .include <bsd.port.mk> |