git: 8db082ca3177 - stable/13 - 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:26:23 UTC
The branch stable/13 has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=8db082ca3177c62c1a93647a75c258e659f6be0a
commit 8db082ca3177c62c1a93647a75c258e659f6be0a
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:23 +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