From owner-svn-ports-head@FreeBSD.ORG Fri Dec 28 12:33:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3DA0661F; Fri, 28 Dec 2012 12:33:06 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 208F98FC0C; Fri, 28 Dec 2012 12:33:06 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBSCX5lI024219; Fri, 28 Dec 2012 12:33:05 GMT (envelope-from demon@svn.freebsd.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBSCX5Md024218; Fri, 28 Dec 2012 12:33:05 GMT (envelope-from demon@svn.freebsd.org) Message-Id: <201212281233.qBSCX5Md024218@svn.freebsd.org> From: Dmitry Sivachenko Date: Fri, 28 Dec 2012 12:33:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309568 - head/devel/uatraits 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.14 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, 28 Dec 2012 12:33:06 -0000 Author: demon Date: Fri Dec 28 12:33:05 2012 New Revision: 309568 URL: http://svnweb.freebsd.org/changeset/ports/309568 Log: Avoid warning "Makefile", line 27: warning: "/nonexistent/bin/python2.7-config --libs" returned non-zero during 'make describe' Reported by: beat Modified: head/devel/uatraits/Makefile Modified: head/devel/uatraits/Makefile ============================================================================== --- head/devel/uatraits/Makefile Fri Dec 28 11:24:15 2012 (r309567) +++ head/devel/uatraits/Makefile Fri Dec 28 12:33:05 2012 (r309568) @@ -24,7 +24,9 @@ USE_LDCONFIG= yes .include +.if exists(${PYTHON_CMD}-config) PYLIBS!= ${PYTHON_CMD}-config --libs +.endif CONFIGURE_ARGS+= --with-boost-prefix=${LOCALBASE} \ --with-pcre-prefix=${LOCALBASE} \ --enable-python --disable-perl --disable-tests \