git: 1305e8a6d02f - stable/13 - llvm-objcopy: link man page as strip.1 when WITH_LLVM_BINUTILS is set
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 16 Apr 2023 13:30:40 UTC
The branch stable/13 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=1305e8a6d02fb322f0a4860bf8a0a63e516ea9df
commit 1305e8a6d02fb322f0a4860bf8a0a63e516ea9df
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-04-05 15:07:14 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-04-16 13:28:08 +0000
llvm-objcopy: link man page as strip.1 when WITH_LLVM_BINUTILS is set
Reviewed by: markj
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D39429
(cherry picked from commit 5cb402cc89c01e0a1f18f8c6a4c7d9cfc10d26ab)
---
usr.bin/clang/llvm-objcopy/Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/usr.bin/clang/llvm-objcopy/Makefile b/usr.bin/clang/llvm-objcopy/Makefile
index 20f5f191b766..1f4b8a3609af 100644
--- a/usr.bin/clang/llvm-objcopy/Makefile
+++ b/usr.bin/clang/llvm-objcopy/Makefile
@@ -34,7 +34,8 @@ LINKS= ${BINDIR}/llvm-objcopy ${BINDIR}/llvm-strip
.if ${MK_LLVM_BINUTILS} != "no"
LINKS+= ${BINDIR}/llvm-objcopy ${BINDIR}/objcopy \
${BINDIR}/llvm-strip ${BINDIR}/strip
-MLINKS= llvm-objcopy.1 objcopy.1
+MLINKS= llvm-objcopy.1 objcopy.1 \
+ llvm-objcopy.1 strip.1
.endif
.include "../llvm.prog.mk"