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 /net-mgmt | |
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 'net-mgmt')
-rw-r--r-- | net-mgmt/coovachilli/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-mgmt/coovachilli/Makefile b/net-mgmt/coovachilli/Makefile index 8c5621ef0cd3..4055213bb6e5 100644 --- a/net-mgmt/coovachilli/Makefile +++ b/net-mgmt/coovachilli/Makefile @@ -29,8 +29,8 @@ OPTIONS_DEFINE= EXAMPLES post-install: ${MKDIR} ${STAGEDIR}/${EXAMPLESDIR} - ${INSTALL_MAN} ${FILESDIR}/main.conf.sample ${STAGEDIR}/${EXAMPLESDIR} - ${INSTALL_MAN} ${FILESDIR}/pf.conf.sample ${STAGEDIR}/${EXAMPLESDIR} - ${INSTALL_MAN} ${FILESDIR}/ipfw-config.sample ${STAGEDIR}/${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/main.conf.sample ${STAGEDIR}/${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/pf.conf.sample ${STAGEDIR}/${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/ipfw-config.sample ${STAGEDIR}/${EXAMPLESDIR} .include <bsd.port.mk> |