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 /misc | |
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 'misc')
-rw-r--r-- | misc/proxyper/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/proxyper/Makefile b/misc/proxyper/Makefile index 86c358206678..a058ebbf12c3 100644 --- a/misc/proxyper/Makefile +++ b/misc/proxyper/Makefile @@ -28,8 +28,8 @@ DISTNAME= proxyper${PORTVERSION}-freebsd7-x86 do-install: ${MKDIR} ${STAGEDIR}${BINDIR} ${INSTALL_PROGRAM} ${WRKSRC}/proxyper ${STAGEDIR}${BINDIR} - ${INSTALL_MAN} ${WRKSRC}/ChangeLog.txt ${STAGEDIR}${BINDIR} - ${INSTALL_MAN} ${WRKSRC}/manual.html ${STAGEDIR}${BINDIR} + ${INSTALL_DATA} ${WRKSRC}/ChangeLog.txt ${STAGEDIR}${BINDIR} + ${INSTALL_DATA} ${WRKSRC}/manual.html ${STAGEDIR}${BINDIR} ${INSTALL} -c -m 644 ${WRKSRC}/proxyper.ini ${STAGEDIR}${BINDIR}/proxyper.ini.sample .include <bsd.port.post.mk> |