svn commit: r549608 - head/lang/ccl

Stefan Eßer se at FreeBSD.org
Tue Sep 22 16:38:44 UTC 2020


Author: se
Date: Tue Sep 22 16:38:43 2020
New Revision: 549608
URL: https://svnweb.freebsd.org/changeset/ports/549608

Log:
  Add a build dependency on GNU as
  
  On systems with GNU as in base (up to and including 12.x) there is no need
  to provide the GNU binutils from a port.
  
  If the not fully compatible llvm-as should be made available under the name
  "as", the condition should be changed to always require binutils from a port
  when running on a system after 12.x (which should retain the GNU as in base
  for the live-time of that major release).

Modified:
  head/lang/ccl/Makefile

Modified: head/lang/ccl/Makefile
==============================================================================
--- head/lang/ccl/Makefile	Tue Sep 22 16:28:37 2020	(r549607)
+++ head/lang/ccl/Makefile	Tue Sep 22 16:38:43 2020	(r549608)
@@ -33,6 +33,7 @@ USE_ASDF=	yes
 .if ${OSVERSION} < 1200000
 IGNORE=         does not build on FreeBSD < 12.0
 .endif
+BUILD_DEPENDS+=	as:devel/binutils
 
 LISP_ARCH=	x8664
 FX86CL=		fx86cl64


More information about the svn-ports-all mailing list