aboutsummaryrefslogtreecommitdiff
path: root/apps/examples/thttpd/content/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-20 15:47:41 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-20 15:47:41 +0000
commitf552862bb546891ecc51cda2fe662c630ff019cb (patch)
treed1c5f0308d3f7b846b88ccaa29b84e3c4bbaeadc /apps/examples/thttpd/content/Makefile
parent6833671f0c73c1b3d4eda7251e64410e421600c4 (diff)
downloadpx4-firmware-f552862bb546891ecc51cda2fe662c630ff019cb.tar.gz
px4-firmware-f552862bb546891ecc51cda2fe662c630ff019cb.tar.bz2
px4-firmware-f552862bb546891ecc51cda2fe662c630ff019cb.zip
Missing comma in EVERY DELFILE/DELDIR macro call in every Makefile
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/thttpd/content/Makefile')
-rw-r--r--apps/examples/thttpd/content/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/thttpd/content/Makefile b/apps/examples/thttpd/content/Makefile
index 8a74201b5..b4deddef5 100644
--- a/apps/examples/thttpd/content/Makefile
+++ b/apps/examples/thttpd/content/Makefile
@@ -98,8 +98,8 @@ $(SYMTAB): build
clean: $(foreach DIR, $(SUBDIRS), $(DIR)_clean)
$(call DELFILE$(ROMFS_HDR))
- $(call DELFILE $(ROMFS_IMG))
- $(call DELFILE $(SYMTAB))
+ $(call DELFILE, $(ROMFS_IMG))
+ $(call DELFILE, $(SYMTAB))
@rm -rf $(ROMFS_DIR)
$(call CLEAN)