From owner-svn-ports-all@FreeBSD.ORG Wed Sep 12 05:40:37 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CD6C106566C; Wed, 12 Sep 2012 05:40:37 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6888A8FC0A; Wed, 12 Sep 2012 05:40:37 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8C5ebwV003981; Wed, 12 Sep 2012 05:40:37 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8C5ebN5003979; Wed, 12 Sep 2012 05:40:37 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201209120540.q8C5ebN5003979@svn.freebsd.org> From: Emanuel Haupt Date: Wed, 12 Sep 2012 05:40:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304133 - head/net/rsync X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2012 05:40:37 -0000 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 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