svn commit: r304133 - head/net/rsync
Emanuel Haupt
ehaupt at FreeBSD.org
Wed Sep 12 05:40:37 UTC 2012
Author: ehaupt
Date: Wed Sep 12 05:40:36 2012
New Revision: 304133
URL: http://svn.freebsd.org/changeset/ports/304133
Log:
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 at augenstein.net>
Modified:
head/net/rsync/Makefile
Modified: head/net/rsync/Makefile
==============================================================================
--- head/net/rsync/Makefile Wed Sep 12 05:27:03 2012 (r304132)
+++ head/net/rsync/Makefile Wed Sep 12 05:40:36 2012 (r304133)
@@ -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
More information about the svn-ports-all
mailing list