Module Name: src Committed By: lukem Date: Mon May 29 17:35:11 UTC 2023
Modified Files: src/share/mk: bsd.own.mk Log Message: bsd.own.mk: sort list of NO* variables List the NO variables in order, leaving enough room to add more entries, not splitting the next letter after "NO" across a line. No functional change; just prettier and easier to review. To generate a diff of this commit: cvs rdiff -u -r1.1327 -r1.1328 src/share/mk/bsd.own.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/mk/bsd.own.mk diff -u src/share/mk/bsd.own.mk:1.1327 src/share/mk/bsd.own.mk:1.1328 --- src/share/mk/bsd.own.mk:1.1327 Sun May 28 10:49:00 2023 +++ src/share/mk/bsd.own.mk Mon May 29 17:35:11 2023 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.1327 2023/05/28 10:49:00 lukem Exp $ +# $NetBSD: bsd.own.mk,v 1.1328 2023/05/29 17:35:11 lukem Exp $ # This needs to be before bsd.init.mk .if defined(BSD_MK_COMPAT_FILE) @@ -1022,9 +1022,10 @@ dependall: .NOTMAIN realdepend .MAKE # including bsd.own.mk. # .for var in \ - NOCOMPAT NODOC NOHTML NOINFO NOLIBCSANITIZER NOLINKLIB \ - NOLINT NOMAN NONLS NOOBJ NOPIC NOPICINSTALL NOPROFILE NOSHARE \ - NOSTATICLIB NODEBUGLIB NOSANITIZER NORELRO + NOCOMPAT NODEBUGLIB NODOC NOHTML NOINFO \ + NOLIBCSANITIZER NOLINKLIB NOLINT NOMAN NONLS NOOBJ \ + NOPIC NOPICINSTALL NOPROFILE NORELRO \ + NOSANITIZER NOSHARE NOSTATICLIB .if defined(${var}) MK${var:S/^NO//}:= no .endif