mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix a breakage with "MODULES_WITH_WORLD=true make buildworld".
PR: kern/11320
This commit is contained in:
parent
4f3349076d
commit
9163fee71f
1 changed files with 5 additions and 2 deletions
|
|
@ -5,12 +5,15 @@
|
|||
|
||||
KMOD = dcons
|
||||
SRCS = dcons.c dcons.h dcons_os.c dcons_os.h \
|
||||
opt_dcons.h opt_ddb.h opt_comconsole.h
|
||||
opt_dcons.h opt_kdb.h opt_ddb.h opt_gdb.h opt_comconsole.h
|
||||
|
||||
.if !defined(KERNBUILDDIR)
|
||||
opt_ddb.h:
|
||||
opt_kdb.h:
|
||||
echo "#define KDB 1" > $@
|
||||
|
||||
opt_ddb.h:
|
||||
echo "#define DDB 1" > $@
|
||||
|
||||
opt_comconsole.h:
|
||||
echo "#define ALT_BREAK_TO_DEBUGGER 1" > $@
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue