aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorehaupt <ehaupt@FreeBSD.org>2012-09-12 13:40:36 +0800
committerehaupt <ehaupt@FreeBSD.org>2012-09-12 13:40:36 +0800
commit7ad0f4f707abe2e6f266ddb2e37245a296142ddc (patch)
tree5b08d2769a078d3c187542c71baf016da093fa74 /net
parentc52b43f91570ab7c337f6ddfa9cdc2eb589e384a (diff)
downloadfreebsd-ports-gnome-7ad0f4f707abe2e6f266ddb2e37245a296142ddc.tar.gz
freebsd-ports-gnome-7ad0f4f707abe2e6f266ddb2e37245a296142ddc.tar.zst
freebsd-ports-gnome-7ad0f4f707abe2e6f266ddb2e37245a296142ddc.zip
Fix a condition to correctly check whether the SSH option is used. This error
slipped in when the port was converted to OPTIONSng. Notified by: Norbert Augenstein <lists@augenstein.net>
Diffstat (limited to 'net')
-rw-r--r--net/rsync/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile
index c41c0e49b5df..d3c083b4a302 100644
--- a/net/rsync/Makefile
+++ b/net/rsync/Makefile
@@ -2,7 +2,7 @@
PORTNAME= rsync
PORTVERSION= 3.0.9
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= net ipv6
MASTER_SITES= http://rsync.samba.org/ftp/%SUBDIR%/ \
ftp://ftp.samba.org/pub/%SUBDIR%/ \
@@ -106,6 +106,8 @@ CONFIGURE_ARGS+= --with-included-popt
.endif
.if ${PORT_OPTIONS:MSSH}
+CONFIGURE_ARGS+= --with-rsh=ssh
+.else
CONFIGURE_ARGS+= --with-rsh=rsh
.endif