aboutsummaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-03 15:45:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-03 15:45:57 +0000
commit60bd93728b779608fb0733822b7de55308ab738b (patch)
tree5f83213c9aa8cd6a457079e87becb24fdd3c7454 /nuttx
parent8d75785fad6f77f796655167bb9087266df2a117 (diff)
downloadpx4-firmware-60bd93728b779608fb0733822b7de55308ab738b.tar.gz
px4-firmware-60bd93728b779608fb0733822b7de55308ab738b.tar.bz2
px4-firmware-60bd93728b779608fb0733822b7de55308ab738b.zip
Fix bad conditional in nuttx/libc/misc/Make.defs
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5474 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/ChangeLog2
-rw-r--r--nuttx/libc/misc/Make.defs2
2 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 0c7a4dcbf..bc698f6ad 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -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.
+
diff --git a/nuttx/libc/misc/Make.defs b/nuttx/libc/misc/Make.defs
index ad0313346..0d3c87d9d 100644
--- a/nuttx/libc/misc/Make.defs
+++ b/nuttx/libc/misc/Make.defs
@@ -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