git: a37670a53a49 - 2025Q3 - security/zeek: Fix PERFTOOLS_RUN_DEPENDS

From: Craig Leres <leres_at_FreeBSD.org>
Date: Sun, 27 Jul 2025 18:47:12 UTC
The branch 2025Q3 has been updated by leres:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a37670a53a4933364eadca70c1b2fe9d61096a59

commit a37670a53a4933364eadca70c1b2fe9d61096a59
Author:     Craig Leres <leres@FreeBSD.org>
AuthorDate: 2025-07-06 21:09:31 +0000
Commit:     Craig Leres <leres@FreeBSD.org>
CommitDate: 2025-07-27 18:46:55 +0000

    security/zeek: Fix PERFTOOLS_RUN_DEPENDS
    
    Build depends should be executables or shared libraries, not include
    files.
    
    Reported by:    Gleb Popov
    
    (cherry picked from commit b3cca781ad7fcc93a528d3d3f78462b8e7bf53fe)
---
 security/zeek/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/security/zeek/Makefile b/security/zeek/Makefile
index 5ee79c220c55..6a84daace7de 100644
--- a/security/zeek/Makefile
+++ b/security/zeek/Makefile
@@ -131,7 +131,7 @@ LBL_HF_RUN_DEPENDS=		${LOCALBASE}/bin/hf:sysutils/lbl-hf
 PERFTOOLS_BUILD_DEPENDS=	${LOCALBASE}/include/gperftools/tcmalloc.h:devel/google-perftools \
 				${LOCALBASE}/bin/pprof:devel/pprof
 PERFTOOLS_CMAKE_BOOL=		ENABLE_PERFTOOLS
-PERFTOOLS_RUN_DEPENDS=		${LOCALBASE}/include/gperftools/tcmalloc.h:devel/google-perftools \
+PERFTOOLS_RUN_DEPENDS=		${LOCALBASE}/lib/libtcmalloc.so.4:devel/google-perftools \
 				${LOCALBASE}/bin/pprof:devel/pprof
 SPICY_CMAKE_OFF=		-DDISABLE_SPICY=ON
 ZEEKCTL_BUILD_DEPENDS=		${LOCALBASE}/bin/bash:shells/bash \