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:
patacongo 2013-01-03 15:45:57 +00:00
parent 55723a1b17
commit b4b3c78e54
2 changed files with 3 additions and 1 deletions

View File

@ -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.

View File

@ -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