diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-05-14 09:01:52 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-05-14 09:01:52 +0800 |
commit | 00a53b6365c04ad9dd461121c294d4e306ae7351 (patch) | |
tree | 1c6c131a860639b2e161951dce7c997b174e685b /security/keychain | |
parent | b5aa576c396b67d9447e06625c00143254db5c16 (diff) | |
download | freebsd-ports-gnome-00a53b6365c04ad9dd461121c294d4e306ae7351.tar.gz freebsd-ports-gnome-00a53b6365c04ad9dd461121c294d4e306ae7351.tar.zst freebsd-ports-gnome-00a53b6365c04ad9dd461121c294d4e306ae7351.zip |
Don't use exists() for the ssh dependency. The RUN_DEPENDS line already
handles checking if these files exist. Removing this fixes poudriere
already rebuilding this port when there is no base sshd and only a port
version.
Diffstat (limited to 'security/keychain')
-rw-r--r-- | security/keychain/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/security/keychain/Makefile b/security/keychain/Makefile index 081998cf444c..2f7d3a68cefa 100644 --- a/security/keychain/Makefile +++ b/security/keychain/Makefile @@ -3,7 +3,7 @@ PORTNAME= keychain PORTVERSION= 2.8.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://www.funtoo.org/archive/keychain/ \ GENTOO/distfiles @@ -28,9 +28,7 @@ PLIST_FILES= bin/${PORTNAME} \ PORTDOCS= ChangeLog README.md -.if !exists(${LOCALBASE}/bin/ssh-agent) && !exists(/usr/bin/ssh-agent) RUN_DEPENDS+= ssh-agent:${PORTSDIR}/security/openssh-portable -.endif do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin |