git: db26d3ca59a9 - stable/12 - mk: format some option lists
Mitchell Horne
mhorne at FreeBSD.org
Wed Aug 11 17:25:12 UTC 2021
The branch stable/12 has been updated by mhorne:
URL: https://cgit.FreeBSD.org/src/commit/?id=db26d3ca59a90185d73d3345398d3e3efcea6862
commit db26d3ca59a90185d73d3345398d3e3efcea6862
Author: Mitchell Horne <mhorne at FreeBSD.org>
AuthorDate: 2021-08-04 18:17:34 +0000
Commit: Mitchell Horne <mhorne at FreeBSD.org>
CommitDate: 2021-08-11 17:15:50 +0000
mk: format some option lists
Alphabetize and give each option its own line, ahead of making another
change to these lists. This makes future diffs easier to read.
Reviewed by: imp, emaste
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D31399
(cherry picked from commit bcd2f41f7d222a942fe0a268614b46d3ec3af4c0)
---
Makefile.inc1 | 45 +++++++++++++++++++++++++--------
Makefile.libcompat | 8 ++++--
targets/pseudo/bootstrap-tools/Makefile | 19 ++++++++++----
3 files changed, 54 insertions(+), 18 deletions(-)
diff --git a/Makefile.inc1 b/Makefile.inc1
index be0d0d2a2334..d7e05df9ae24 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -656,11 +656,21 @@ BSARGS= DESTDIR= \
BOOTSTRAPPING=${OSRELDATE} \
BWPHASE=${.TARGET:C,^_,,} \
SSP_CFLAGS= \
- MK_HTML=no NO_LINT=yes MK_MAN=no \
- -DNO_PIC MK_PROFILE=no -DNO_SHARED \
- -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
- MK_CLANG_EXTRAS=no MK_CLANG_FORMAT=no MK_CLANG_FULL=no \
- MK_LLDB=no MK_RETPOLINE=no MK_TESTS=no \
+ -DNO_CPU_CFLAGS \
+ -DNO_LINT \
+ -DNO_PIC \
+ -DNO_SHARED \
+ MK_CTF=no \
+ MK_CLANG_EXTRAS=no \
+ MK_CLANG_FORMAT=no \
+ MK_CLANG_FULL=no \
+ MK_HTML=no \
+ MK_LLDB=no \
+ MK_MAN=no \
+ MK_PROFILE=no \
+ MK_RETPOLINE=no \
+ MK_TESTS=no \
+ MK_WARNS=no \
MK_INCLUDES=yes
BMAKE= \
@@ -678,10 +688,16 @@ TMAKE= \
BOOTSTRAPPING=${OSRELDATE} \
BWPHASE=${.TARGET:C,^_,,} \
SSP_CFLAGS= \
+ -DNO_CPU_CFLAGS \
-DNO_LINT \
- -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
- MK_CLANG_EXTRAS=no MK_CLANG_FORMAT=no MK_CLANG_FULL=no \
- MK_LLDB=no MK_RETPOLINE=no MK_TESTS=no
+ MK_CTF=no \
+ MK_CLANG_EXTRAS=no \
+ MK_CLANG_FORMAT=no \
+ MK_CLANG_FULL=no \
+ MK_LLDB=no \
+ MK_RETPOLINE=no \
+ MK_TESTS=no \
+ MK_WARNS=no
# cross-tools stage
# TOOLS_PREFIX set in BMAKE
@@ -703,9 +719,16 @@ KTMAKE= \
MAKEOBJDIRPREFIX= \
BOOTSTRAPPING=${OSRELDATE} \
SSP_CFLAGS= \
- MK_HTML=no -DNO_LINT MK_MAN=no \
- -DNO_PIC MK_PROFILE=no -DNO_SHARED \
- -DNO_CPU_CFLAGS MK_RETPOLINE=no MK_WARNS=no MK_CTF=no
+ -DNO_CPU_CFLAGS \
+ -DNO_LINT \
+ -DNO_PIC \
+ -DNO_SHARED \
+ MK_CTF=no \
+ MK_HTML=no \
+ MK_MAN=no \
+ MK_PROFILE=no \
+ MK_RETPOLINE=no \
+ MK_WARNS=no
# world stage
WMAKEENV= ${CROSSENV} \
diff --git a/Makefile.libcompat b/Makefile.libcompat
index a2a6bb607fdc..4e5a8dd8ae73 100644
--- a/Makefile.libcompat
+++ b/Makefile.libcompat
@@ -201,8 +201,12 @@ build${libcompat}: .PHONY
OBJTOP=${LIBCOMPAT_OBJTOP} \
OBJROOT='$${OBJTOP}/' \
MAKEOBJDIRPREFIX= \
- DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS \
- MK_CTF=no MK_RETPOLINE=no MK_WARNS=no \
+ DIRPRFX=${_dir}/ \
+ -DNO_LINT \
+ -DNO_CPU_CFLAGS \
+ MK_CTF=no \
+ MK_RETPOLINE=no \
+ MK_WARNS=no \
${_t}
.endfor
.endfor
diff --git a/targets/pseudo/bootstrap-tools/Makefile b/targets/pseudo/bootstrap-tools/Makefile
index d860a50836b1..7ab8032157c3 100644
--- a/targets/pseudo/bootstrap-tools/Makefile
+++ b/targets/pseudo/bootstrap-tools/Makefile
@@ -40,11 +40,20 @@ BSARGS= DESTDIR= \
BOOTSTRAPPING=${OSRELDATE} \
BWPHASE=${.TARGET} \
SSP_CFLAGS= \
- MK_HTML=no NO_LINT=yes MK_MAN=no \
- -DNO_PIC MK_PROFILE=no -DNO_SHARED \
- -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
- MK_CLANG_EXTRAS=no MK_CLANG_FORMAT=no MK_CLANG_FULL=no \
- MK_LLDB=no MK_TESTS=no \
+ -DNO_CPU_CFLAGS \
+ -DNO_LINT \
+ -DNO_PIC \
+ -DNO_SHARED \
+ MK_CTF=no \
+ MK_CLANG_EXTRAS=no \
+ MK_CLANG_FORMAT=no \
+ MK_CLANG_FULL=no \
+ MK_HTML=no \
+ MK_LLDB=no \
+ MK_MAN=no \
+ MK_PROFILE=no \
+ MK_TESTS=no \
+ MK_WARNS=no \
MK_INCLUDES=yes
# We will handle building the toolchain and cross-compiler.
More information about the dev-commits-src-all
mailing list