mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 23:05:49 +01:00
Implement an idea from Sam Leffler:
make KERNFAST=blah buildkernel is now a short cut for make KERNCONF=blah -DKERNFAST buildkernel This change works for all kernel config files not named "1". I did that to make sure that make -DKERNFAST buildkernel remains the same as make -DKERNFAST KERNCONF=GENERIC buildkernel rather than trying to build and configure "1". I've never seen a kernel config file named "1," so I think this is a good compromise.
This commit is contained in:
parent
a5985e8b56
commit
b61a9dcf3f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=187636
@ -702,6 +702,10 @@ distrib-dirs distribution:
|
||||
NO_KERNELCLEAN= t
|
||||
NO_KERNELCONFIG= t
|
||||
NO_KERNELDEPEND= t
|
||||
# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
|
||||
.if !defined(KERNCONF) && ${KERNFAST} != "1"
|
||||
KERNCONF=${KERNFAST}
|
||||
.endif
|
||||
.endif
|
||||
.if !defined(KERNCONF) && defined(KERNEL)
|
||||
KERNCONF= ${KERNEL}
|
||||
|
Loading…
Reference in New Issue
Block a user