diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2012-09-12 13:40:36 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2012-09-12 13:40:36 +0800 |
commit | 7ad0f4f707abe2e6f266ddb2e37245a296142ddc (patch) | |
tree | 5b08d2769a078d3c187542c71baf016da093fa74 /net | |
parent | c52b43f91570ab7c337f6ddfa9cdc2eb589e384a (diff) | |
download | freebsd-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/Makefile | 4 |
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 |