Date: Wed, 12 Sep 2012 05:40:37 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r304133 - head/net/rsync Message-ID: <201209120540.q8C5ebN5003979@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209120540.q8C5ebN5003979>