git: 02f82a3f0e92 - stable/14 - kldxref: Put each ef_CPUARCH.c on its own line to prepare for ef_arm.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 18 Jan 2024 22:25:52 UTC
The branch stable/14 has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=02f82a3f0e9276a5fe799c2a22b71f9960169219
commit 02f82a3f0e9276a5fe799c2a22b71f9960169219
Author: Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2023-12-14 18:27:09 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2024-01-18 21:30:21 +0000
kldxref: Put each ef_CPUARCH.c on its own line to prepare for ef_arm.c
Adding ef_arm.c would push this past 80 columns, so prepare for its
addition by splitting the line up.
(cherry picked from commit ada9d12f951201e13d831edc10acc36dd37d625e)
---
usr.sbin/kldxref/Makefile | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/usr.sbin/kldxref/Makefile b/usr.sbin/kldxref/Makefile
index 6e0a7244328b..07451ba8f42b 100644
--- a/usr.sbin/kldxref/Makefile
+++ b/usr.sbin/kldxref/Makefile
@@ -3,7 +3,12 @@ PACKAGE= runtime
PROG= kldxref
MAN= kldxref.8
SRCS= kldxref.c ef.c ef_obj.c elf.c
-SRCS+= ef_aarch64.c ef_amd64.c ef_i386.c ef_mips.c ef_powerpc.c ef_riscv.c
+SRCS+= ef_aarch64.c \
+ ef_amd64.c \
+ ef_i386.c \
+ ef_mips.c \
+ ef_powerpc.c \
+ ef_riscv.c
WARNS?= 2