diff options
author | John Hein <jcfyecrayz@liamekaens.com> | 2025-07-20 01:45:39 +0300 |
---|---|---|
committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2025-07-20 01:45:39 +0300 |
commit | 302ba4b88cdbe0a05a18f653921cddc77f18ad1f (patch) | |
tree | 4144f3df9d791828c216826f5be8b62ea35d0982 | |
parent | editors/libreoffice: update to 25.2.5 release (+) (diff) |
security/openfortivpn: Fix build with openssl from ports
Typo in CFLAGS: ${OPENSSLINC} => -I${OPENSSLINC}
PR: 287912
Approved by: Atanu Biswas <atanubiswas484@gmail.com> (maintainer, implicit - fix port)
MFH: 2025Q3
-rw-r--r-- | security/openfortivpn/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/openfortivpn/Makefile b/security/openfortivpn/Makefile index e9f4da01f83b..0e94e48435c8 100644 --- a/security/openfortivpn/Makefile +++ b/security/openfortivpn/Makefile @@ -19,7 +19,7 @@ GH_ACCOUNT= adrienverge GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_path_SED=${LOCALBASE}/bin/gsed \ - OPENSSL_CFLAGS=${OPENSSLINC} \ + OPENSSL_CFLAGS=-I${OPENSSLINC} \ OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" \ ac_cv_header_net_route_h=yes |