aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorBernard Spil <brnrd@FreeBSD.org>2022-06-20 11:43:43 +0000
committerBernard Spil <brnrd@FreeBSD.org>2022-06-20 11:43:43 +0000
commit0befb0f7e74637d9152aa286e4c18188cc5344ae (patch)
tree2633df2697bb5da6774717edbc4d9afe41af15d9 /net
parent2327fe64774aa580a0cbc66f8c16521fcf9f4133 (diff)
downloadports-0befb0f7e74637d9152aa286e4c18188cc5344ae.tar.gz
ports-0befb0f7e74637d9152aa286e4c18188cc5344ae.zip
net/endlessh: fix wrong use of STRIP
* STRIP_CMD was meant instead of STRIP, causing the build to hang when building unstripped packages. PR: 264711 Submitted by: Robert Clausecker <fuz fuz su>
Diffstat (limited to 'net')
-rw-r--r--net/endlessh/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/endlessh/Makefile b/net/endlessh/Makefile
index b21b47922c58..54968d94850e 100644
--- a/net/endlessh/Makefile
+++ b/net/endlessh/Makefile
@@ -29,6 +29,6 @@ post-patch:
post-install:
${INSTALL_DATA} ${FILESDIR}/endlessh.newsyslog.conf \
${FILESDIR}/endlessh.conf.sample ${STAGEDIR}${PREFIX}/etc/
- ${STRIP} ${STAGEDIR}${PREFIX}/bin/endlessh
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/endlessh
.include <bsd.port.mk>