Revision: 133350 https://trac.macports.org/changeset/133350 Author: ionic@macports.org Date: 2015-02-26 13:45:25 -0800 (Thu, 26 Feb 2015) Log Message: ----------- gpg-agent: fix inverted pinentry/pinentry-mac ports check. Modified Paths: -------------- trunk/dports/security/gpg-agent/Portfile Modified: trunk/dports/security/gpg-agent/Portfile =================================================================== --- trunk/dports/security/gpg-agent/Portfile 2015-02-26 21:36:16 UTC (rev 133349) +++ trunk/dports/security/gpg-agent/Portfile 2015-02-26 21:45:25 UTC (rev 133350) @@ -65,8 +65,8 @@ if {${os.subplatform} ne "macosx" || ${xcodeversion} eq "none" || [vercmp ${xcodeversion} {5.0}] < 0 || - ${os.major} < 12 || ([catch {registry_active pinentry}] && - ![catch {registry_active pinentry-mac}])} { + ${os.major} < 12 || (![catch {registry_active pinentry}] && + [catch {registry_active pinentry-mac}])} { default_variants-append +pinentry } else { default_variants-append +pinentry_mac
participants (1)
-
ionic@macports.org