git: 6764a97f12fa - main - security/ossec-hids*: fix make warnings

From: Wolfram Schneider <wosch_at_FreeBSD.org>
Date: Fri, 25 Jul 2025 16:05:36 UTC
The branch main has been updated by wosch:

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

commit 6764a97f12fadadd0d4803aa205c47161ae50ae4
Author:     Wolfram Schneider <wosch@FreeBSD.org>
AuthorDate: 2025-07-25 16:02:32 +0000
Commit:     Wolfram Schneider <wosch@FreeBSD.org>
CommitDate: 2025-07-25 16:02:32 +0000

    security/ossec-hids*: fix make warnings
    
    use backticks rather than $() which is rather fraught with make
    
    PR:             288365
    Approved by:    sjg (bmake maintainer)
---
 security/ossec-hids-local/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/security/ossec-hids-local/Makefile b/security/ossec-hids-local/Makefile
index 2550813a7cd4..68f9212657ab 100644
--- a/security/ossec-hids-local/Makefile
+++ b/security/ossec-hids-local/Makefile
@@ -189,8 +189,8 @@ PKGMSG_FILES=	message-header
 
 PKG_CONFIG=	${CONFIGURE_ENV:MPKG_CONFIG=*:S/PKG_CONFIG=//}
 CFLAGS+=	-I${LOCALBASE}/include
-INOTIFY_CFLAGS=	$$(${PKG_CONFIG} --cflags libinotify)
-INOTIFY_LDFLAGS=$$(${PKG_CONFIG} --libs libinotify)
+INOTIFY_CFLAGS=	 `${PKG_CONFIG} --cflags libinotify`
+INOTIFY_LDFLAGS= `${PKG_CONFIG} --libs libinotify`
 
 OSSEC_ARGS+=	TARGET=${OSSEC_TYPE} PCRE2_SYSTEM=yes INSTALL_LOCALTIME=no INSTALL_RESOLVCONF=no
 .if defined(OSSEC_MAX_AGENTS)