mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-10 08:22:27 +01:00
Catch typos in the kernel name specified for an "installkernel" invocation
early on, rather than failing later with an obscure error message. Make error messages appear consistent.
This commit is contained in:
parent
325dcf8872
commit
07e5ffba6a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110485
@ -469,7 +469,7 @@ INSTALLKERNEL= ${_kernel}
|
||||
#
|
||||
buildkernel:
|
||||
.if empty(BUILDKERNELS)
|
||||
@echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
|
||||
@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF}).";
|
||||
@false
|
||||
.endif
|
||||
.if defined(KERNWARN)
|
||||
@ -528,6 +528,10 @@ buildkernel:
|
||||
# Install the kernel defined by INSTALLKERNEL
|
||||
#
|
||||
installkernel reinstallkernel:
|
||||
.if empty(INSTALLKERNEL)
|
||||
@echo "ERROR: No kernel \"${KERNCONF}\" to install."
|
||||
@false
|
||||
.endif
|
||||
cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
|
||||
${CROSSENV} PATH=${TMPPATH} \
|
||||
${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
|
||||
|
Loading…
Reference in New Issue
Block a user