From owner-svn-ports-head@FreeBSD.ORG Sun Feb 23 02:20:03 2014 Return-Path: Delivered-To: svn-ports-head@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 736F63B9; Sun, 23 Feb 2014 02:20:03 +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 5F9F2168E; Sun, 23 Feb 2014 02:20:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1N2K3s2073462; Sun, 23 Feb 2014 02:20:03 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1N2K3bi073461; Sun, 23 Feb 2014 02:20:03 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201402230220.s1N2K3bi073461@svn.freebsd.org> From: Gerald Pfeifer Date: Sun, 23 Feb 2014 02:20:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345690 - head/Mk 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: Sun, 23 Feb 2014 02:20:03 -0000 Author: gerald Date: Sun Feb 23 02:20:02 2014 New Revision: 345690 URL: http://svnweb.freebsd.org/changeset/ports/345690 QAT: https://qat.redports.org/buildarchive/r345690/ Log: Remove the _GCC_BUILD_DEPENDS variable which we had kept for the sake of some ports using this unexpectedly. There are no further instances in the tree any more. If there is an absolute need to refer to the GCC runtime directory that cannot be covered by CFLAGS, LDFLAGS or the like, use _GCC_RUNTIME. This hardly ever should be necessary, though. Avoid whenever possible! Modified: head/Mk/bsd.gcc.mk Modified: head/Mk/bsd.gcc.mk ============================================================================== --- head/Mk/bsd.gcc.mk Sun Feb 23 02:16:09 2014 (r345689) +++ head/Mk/bsd.gcc.mk Sun Feb 23 02:20:02 2014 (r345690) @@ -160,9 +160,6 @@ _GCC_RUNTIME:= ${LOCALBASE}/lib/gcc${V} CFLAGS+= -Wl,-rpath=${_GCC_RUNTIME} CXXFLAGS+= -Wl,-rpath=${_GCC_RUNTIME} LDFLAGS+= -Wl,-rpath=${_GCC_RUNTIME} -L${_GCC_RUNTIME} -# The following is for the sakes of some ports which use this without -# ever telling us; to be fixed. -_GCC_BUILD_DEPENDS:= ${_GCC_PORT_DEPENDS} . else # Use GCC in base. CC:= gcc CXX:= g++