From owner-svn-ports-head@FreeBSD.ORG Fri Feb 21 15:26:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AF90C6C; Fri, 21 Feb 2014 15:26:24 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 04ABC1A46; Fri, 21 Feb 2014 15:26:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1LFQNOt019198; Fri, 21 Feb 2014 15:26:23 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1LFQN09019197; Fri, 21 Feb 2014 15:26:23 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201402211526.s1LFQN09019197@svn.freebsd.org> From: Joe Marcus Clarke Date: Fri, 21 Feb 2014 15:26:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345485 - head/net-im/libpurple X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 15:26:24 -0000 Author: marcus Date: Fri Feb 21 15:26:23 2014 New Revision: 345485 URL: http://svnweb.freebsd.org/changeset/ports/345485 QAT: https://qat.redports.org/buildarchive/r345485/ Log: Correct a typo when configuring dynamic prpl modules. I seem to recall this was a typo on purpose at some point, but the new configure uses '-' instead of '_'. Modified: head/net-im/libpurple/Makefile Modified: head/net-im/libpurple/Makefile ============================================================================== --- head/net-im/libpurple/Makefile Fri Feb 21 15:17:11 2014 (r345484) +++ head/net-im/libpurple/Makefile Fri Feb 21 15:26:23 2014 (r345485) @@ -18,7 +18,7 @@ USE_GNOME?= gnomeprefix intlhack glib20 GNU_CONFIGURE= yes CONFIGURE_ARGS?=--disable-gtkui \ --disable-consoleui \ - --with-dynamic_prpls=${PRPL_MODULES:S/,$//} \ + --with-dynamic-prpls=${PRPL_MODULES:S/,$//} \ --enable-static \ --disable-nm CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \