git: 9b0d9401e6a4 - main - toolchain: Correct LLVM_BINUTILS pkg pkg dependency
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 03 May 2026 11:46:54 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=9b0d9401e6a46456a84500375c36008cfcfcc508
commit 9b0d9401e6a46456a84500375c36008cfcfcc508
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2026-05-02 02:30:15 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-05-03 11:46:41 +0000
toolchain: Correct LLVM_BINUTILS pkg pkg dependency
The LLVM binutils are in the clang package.
Reported by: jlduran
Fixes: c4f08d46c7f7 ("llvm-*: Move all LLVM_BINUTILS symlinks to toolchain package")
---
packages/toolchain/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/toolchain/Makefile b/packages/toolchain/Makefile
index b47d931c2c10..81631264e22f 100644
--- a/packages/toolchain/Makefile
+++ b/packages/toolchain/Makefile
@@ -7,7 +7,7 @@ COMPAT_PKGS= dev
PKG_SETS= devel
.if ${MK_LLVM_BINUTILS} != "no"
-PKG_DEPS.toolchain+= llvm
+PKG_DEPS.toolchain+= clang
.endif
.include <bsd.pkg.mk>