mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-23 07:31:31 +00:00
Permit digits at the beginning and end of kernel config file names for
`make universe'. This catches a few more arm and, once enabled, mips configs and permits having local configs named like NOINET6. Reviewed by: phk MFC after: 4 weeks
This commit is contained in:
parent
7e410be8f0
commit
bfa765fe56
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=186519
2
Makefile
2
Makefile
@ -298,7 +298,7 @@ universe_prologue:
|
|||||||
.endif
|
.endif
|
||||||
.for target in ${TARGETS}
|
.for target in ${TARGETS}
|
||||||
KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \
|
KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \
|
||||||
find [A-Z]*[A-Z] -type f -maxdepth 0 \
|
find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
|
||||||
! -name DEFAULTS ! -name LINT
|
! -name DEFAULTS ! -name LINT
|
||||||
KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
|
KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
|
||||||
universe: universe_${target}
|
universe: universe_${target}
|
||||||
|
Loading…
Reference in New Issue
Block a user