svn commit: r554179 - head/security/seahorse

Mateusz Piotrowski 0mp at FreeBSD.org
Fri Nov 6 11:09:06 UTC 2020


Author: 0mp
Date: Fri Nov  6 11:09:06 2020
New Revision: 554179
URL: https://svnweb.freebsd.org/changeset/ports/554179

Log:
  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

Modified:
  head/security/seahorse/Makefile

Modified: head/security/seahorse/Makefile
==============================================================================
--- head/security/seahorse/Makefile	Fri Nov  6 10:49:41 2020	(r554178)
+++ head/security/seahorse/Makefile	Fri Nov  6 11:09:06 2020	(r554179)
@@ -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
 
@@ -60,5 +56,11 @@ AVAHI_LIB_DEPENDS=	libavahi-client.so:net/avahi-app
 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>


More information about the svn-ports-all mailing list