svn commit: r345690 - head/Mk

Gerald Pfeifer gerald at FreeBSD.org
Sun Feb 23 02:20:03 UTC 2014


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++


More information about the svn-ports-all mailing list