Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Nov 2020 11:09:06 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r554179 - head/security/seahorse
Message-ID:  <202011061109.0A6B96nk077725@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011061109.0A6B96nk077725>