Date: Sat, 2 Mar 2013 01:06:16 +0000 (UTC) From: Gerald Pfeifer <gerald@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313177 - head/Mk Message-ID: <201303020106.r2216GSK067542@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gerald Date: Sat Mar 2 01:06:15 2013 New Revision: 313177 URL: http://svnweb.freebsd.org/changeset/ports/313177 Log: Remove a bogus old check that assumes that every version of FreeBSD has GCC in the base. Adjust a comment, now describing the real purpose of the code remaining in that block. PR: 175252 Modified: head/Mk/bsd.gcc.mk Modified: head/Mk/bsd.gcc.mk ============================================================================== --- head/Mk/bsd.gcc.mk Sat Mar 2 00:40:53 2013 (r313176) +++ head/Mk/bsd.gcc.mk Sat Mar 2 01:06:15 2013 (r313177) @@ -143,20 +143,16 @@ IGNORE= Unknown version of GCC specified .endif # -# Determine current GCCVERSION +# Initialize _GCC_FOUND${v}. # .for v in ${GCCVERSIONS} . if exists(${LOCALBASE}/bin/gcc${_GCCVERSION_${v}_V:S/.//}) _GCC_FOUND${v}= port . endif . if ${OSVERSION} >= ${_GCCVERSION_${v}_L} && ${OSVERSION} < ${_GCCVERSION_${v}_R} -_GCCVERSION:= ${v} _GCC_FOUND${v}:= base . endif .endfor -.if !defined(_GCCVERSION) -IGNORE= Couldn't find your current GCCVERSION (OSVERSION=${OSVERSION}) -.endif # # If the GCC package defined in USE_GCC does not exist, but a later
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303020106.r2216GSK067542>