Fix bad conditional in nuttx/libc/misc/Make.defs
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5474 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
55723a1b17
commit
b4b3c78e54
|
@ -3858,3 +3858,5 @@
|
|||
* include/nuttx/progmem and arch/arm/src/stm32/stm32_flash.c:
|
||||
Fix a counting bug plus change interface to use either relative
|
||||
or absolut FLASH addressing (from Freddie Chopin).
|
||||
* libc/misc/Make.defs: Fix error in conditional for KBD CODEC.
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ CSRCS += lib_dbg.c lib_dumpbuffer.c
|
|||
|
||||
# Keyboard driver encoder/decoder
|
||||
|
||||
ifneq ($(CONFIG_LIB_KBDCODEC),0)
|
||||
ifeq ($(CONFIG_LIB_KBDCODEC),y)
|
||||
CSRCS += lib_kbdencode.c lib_kbddecode.c
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue