aboutsummaryrefslogtreecommitdiff
path: root/net/rsync
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2012-09-12 05:40:36 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2012-09-12 05:40:36 +0000
commit7701c6ff0f24416d93d022376200813842bd8c94 (patch)
tree5b08d2769a078d3c187542c71baf016da093fa74 /net/rsync
parentb59d9aff2523a2d01d1a6adb35f0c8bf408335f2 (diff)
downloadports-7701c6ff0f24416d93d022376200813842bd8c94.tar.gz
ports-7701c6ff0f24416d93d022376200813842bd8c94.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>
Notes
Notes: svn path=/head/; revision=304133
Diffstat (limited to 'net/rsync')
-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