diff options
author | Mateusz Piotrowski <0mp@FreeBSD.org> | 2020-11-06 11:09:06 +0000 |
---|---|---|
committer | Mateusz Piotrowski <0mp@FreeBSD.org> | 2020-11-06 11:09:06 +0000 |
commit | 4b8b90843af6284ad9090958dc3b287857d0e518 (patch) | |
tree | ba9faa06e3ec8aded41508e5d1daed6ebfba16c0 | |
parent | devel/gradle: Fix with openjdk11 (diff) |
Fix the conditional added in r554175
This should have been caught by my poudriere testruns. Sorry for the
breakage.
PR: 249974
Approved by: portmgr blanket
MFH: 2020Q4
Notes
Notes:
svn path=/head/; revision=554179
-rw-r--r-- | security/seahorse/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/security/seahorse/Makefile b/security/seahorse/Makefile index affc3ae71a95..bd1ec789f815 100644 --- a/security/seahorse/Makefile +++ b/security/seahorse/Makefile @@ -42,10 +42,6 @@ MESON_ARGS= -Dcheck-compatible-gpg=false \ -Dpgp-support=true \ -Dpkcs11-support=true -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200000 -LDFLAGS+= -fuse-ld=lld -.endif - BINARY_ALIAS= python3=${PYTHON_CMD} PORTSCOUT= limitw:1,even @@ -61,4 +57,10 @@ AVAHI_MESON_TRUE= key-sharing LDAP_USE= OPENLDAP=yes LDAP_MESON_TRUE= ldap-support +.include <bsd.port.options.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200000 +LDFLAGS+= -fuse-ld=lld +.endif + .include <bsd.port.mk> |