summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2000-02-11 12:57:47 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2000-02-11 12:57:47 +0000
commitd22844569ddd81ab07ed6b703e1cf2d2bd5051d2 (patch)
tree1725e9703c4bf92468c6b133c2f9fc5b8135ec97
parentEntire README files do not go in pkg/DESCR. (diff)
${INSTALL_SCRIPT} tends to make more sense than ${INSTALL_DATA}
when installing an executable script. PR: 16643 Submitted by: Maintainer
Notes
Notes: svn path=/head/; revision=25659
-rw-r--r--net/radreport/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/radreport/Makefile b/net/radreport/Makefile
index d078c6b86a65..c34d8ceec331 100644
--- a/net/radreport/Makefile
+++ b/net/radreport/Makefile
@@ -22,6 +22,6 @@ do-extract:
@for i in $(DISTFILES); do ${CP} ${DISTDIR}/$$i ${WRKDIR}; done
do-install:
- @${INSTALL_DATA} ${WRKDIR}/radreport ${PREFIX}/bin
+ @${INSTALL_SCRIPT} ${WRKDIR}/radreport ${PREFIX}/bin
.include <bsd.port.mk>