aboutsummaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-04-26 15:05:12 -0700
committerpx4dev <px4@purgatory.org>2013-04-26 15:05:12 -0700
commit4fe9e1c4472e3747df62d1808d727768ef3b3751 (patch)
tree6859928b78542eeca9266992fd9583b73154415c /makefiles
parent68c8de4cf13dd4620d0a9a5a0069bc894fcd92e1 (diff)
downloadpx4-firmware-4fe9e1c4472e3747df62d1808d727768ef3b3751.tar.gz
px4-firmware-4fe9e1c4472e3747df62d1808d727768ef3b3751.tar.bz2
px4-firmware-4fe9e1c4472e3747df62d1808d727768ef3b3751.zip
Avoid spurious += in INCLUDE_DIRS
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/nuttx.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefiles/nuttx.mk b/makefiles/nuttx.mk
index 5186dc3ef..346735a02 100644
--- a/makefiles/nuttx.mk
+++ b/makefiles/nuttx.mk
@@ -64,8 +64,8 @@ LDSCRIPT += $(NUTTX_EXPORT_DIR)build/ld.script
# Add directories from the NuttX export to the relevant search paths
#
INCLUDE_DIRS += $(NUTTX_EXPORT_DIR)include \
- += $(NUTTX_EXPORT_DIR)arch/chip \
- += $(NUTTX_EXPORT_DIR)arch/common
+ $(NUTTX_EXPORT_DIR)arch/chip \
+ $(NUTTX_EXPORT_DIR)arch/common
LIB_DIRS += $(NUTTX_EXPORT_DIR)libs
LIBS += -lapps -lnuttx