From owner-svn-ports-all@FreeBSD.ORG Sun Jun 29 06:45:18 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BD92EE4; Sun, 29 Jun 2014 06:45:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 89FFB2DB5; Sun, 29 Jun 2014 06:45:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5T6jInb040023; Sun, 29 Jun 2014 06:45:18 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5T6jIkf040022; Sun, 29 Jun 2014 06:45:18 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201406290645.s5T6jIkf040022@svn.freebsd.org> From: Matthias Andree Date: Sun, 29 Jun 2014 06:45:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359735 - head/net/rsync X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 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: Sun, 29 Jun 2014 06:45:18 -0000 Author: mandree Date: Sun Jun 29 06:45:18 2014 New Revision: 359735 URL: http://svnweb.freebsd.org/changeset/ports/359735 QAT: https://qat.redports.org/buildarchive/r359735/ Log: Unbreak build: Fix typo in popt library dependency (missing p character), so that rsync actually finds a preinstalled libpopt.so if it is there. Approved by: portmgr (blanket "just fix it" approval) Modified: head/net/rsync/Makefile Modified: head/net/rsync/Makefile ============================================================================== --- head/net/rsync/Makefile Sun Jun 29 06:41:31 2014 (r359734) +++ head/net/rsync/Makefile Sun Jun 29 06:45:18 2014 (r359735) @@ -63,7 +63,7 @@ ICONV_CPPFLAGS= -I${LOCALBASE}/include ICONV_LDFLAGS= -L${LOCALBASE}/lib ICONV_CONFIGURE_ENABLE= iconv iconv-open -POPT_PORT_LIB_DEPENDS= libopt.so:${PORTSDIR}/devel/popt +POPT_PORT_LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt POPT_PORT_CPPFLAGS= -I${LOCALBASE}/include POPT_PORT_LDFLAGS= -L${LOCALBASE}/lib POPT_CONFIGURE_WITH= included-popt