diff options
author | danfe <danfe@FreeBSD.org> | 2018-01-10 23:08:51 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2018-01-10 23:08:51 +0800 |
commit | 2e817f4a6d7548842e9852cc958ba56c62c817ec (patch) | |
tree | bc62977cbfc9ea1ae5f98d45ba2f1b4739f06693 /print | |
parent | 66c9d73006e24b07ce3a79e5676c93fa5cc21198 (diff) | |
download | freebsd-ports-gnome-2e817f4a6d7548842e9852cc958ba56c62c817ec.tar.gz freebsd-ports-gnome-2e817f4a6d7548842e9852cc958ba56c62c817ec.tar.zst freebsd-ports-gnome-2e817f4a6d7548842e9852cc958ba56c62c817ec.zip |
Do not abuse INSTALL_MAN when installing documentation, examples, and
other miscellaneous files which are not actually manual pages.
Diffstat (limited to 'print')
-rw-r--r-- | print/gsview/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/gsview/Makefile b/print/gsview/Makefile index ad9571df8d21..c1668be06e5a 100644 --- a/print/gsview/Makefile +++ b/print/gsview/Makefile @@ -49,8 +49,8 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/src/printer.ini \ ${STAGEDIR}${PREFIX}/etc/gsview/ ${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_MAN} gsview.css cdorder.txt regorder.txt \ + cd ${WRKSRC} && ${INSTALL_DATA} gsview.css cdorder.txt regorder.txt \ Readme.htm LICENCE ${STAGEDIR}${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/bin/*.htm ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/bin/*.htm ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |