diff options
author | Stefan Eßer <se@FreeBSD.org> | 2020-09-22 16:38:43 +0000 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2020-09-22 16:38:43 +0000 |
commit | f92feb18f561e305ec669a4b7d1e1557e5b893b4 (patch) | |
tree | 56332ea6562841679afd8c9cea7564aaa36f5048 /lang | |
parent | a73a218a2180ed227bb64609628a094eb929699c (diff) |
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).
Notes
Notes:
svn path=/head/; revision=549608
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ccl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/ccl/Makefile b/lang/ccl/Makefile index 741926d1b539..830c4aebbe39 100644 --- a/lang/ccl/Makefile +++ b/lang/ccl/Makefile @@ -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 |