Rename MKDEBUG to MKSYSDEBUG

This commit is contained in:
Arun Thomas 2011-08-16 21:48:03 +02:00
parent 1f198f75d7
commit 593e3221fc
2 changed files with 4 additions and 4 deletions

View file

@ -68,7 +68,7 @@ SRCS+= breakpoints.c debugreg.S
.endif
# Extra debugging routines
.if ${USE_DEBUG} != "no"
.if ${USE_SYSDEBUG} != "no"
SRCS+= debug.c
.endif

View file

@ -757,7 +757,7 @@ _MKVARS.yes= \
MKYP
#MINIX-specific vars
_MKVARS.yes+= \
MKWATCHDOG MKACPI MKAPIC MKMCONTEXT MKDEBUGREG MKDEBUG
MKWATCHDOG MKACPI MKAPIC MKMCONTEXT MKDEBUGREG MKSYSDEBUG
.for var in ${_MKVARS.yes}
${var}?= yes
.endfor
@ -823,7 +823,7 @@ MKAPIC:= no
MKMCONTEXT:= no
MKCOVERAGE:= no
MKDEBUGREG:= no
MKDEBUG:= no
MKSYSDEBUG:= no
.endif
#
@ -885,7 +885,7 @@ ${var}?= no
# variable is set to "no".
#
.for var in USE_HESIOD USE_INET6 USE_KERBEROS USE_LDAP USE_PAM USE_YP \
USE_WATCHDOG USE_ACPI USE_APIC USE_MCONTEXT USE_DEBUGREG USE_DEBUG
USE_WATCHDOG USE_ACPI USE_APIC USE_MCONTEXT USE_DEBUGREG USE_SYSDEBUG
.if (${${var:S/USE_/MK/}} == "no")
${var}:= no
.else