summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-27 14:46:01 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-27 14:46:01 -0600
commitac637db8fc6ddae9f81445e8460666bbbb62a8d7 (patch)
tree0a4046ca01760caee8b01a90cefc0ec1b3152fe9
parentc14d27eddcb135974dda7c5ba0211060837ec46f (diff)
downloadnuttx-ac637db8fc6ddae9f81445e8460666bbbb62a8d7.tar.gz
nuttx-ac637db8fc6ddae9f81445e8460666bbbb62a8d7.tar.bz2
nuttx-ac637db8fc6ddae9f81445e8460666bbbb62a8d7.zip
apps/examples/ustream: Fix error in Makefile
-rw-r--r--apps/examples/ustream/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/ustream/Makefile b/apps/examples/ustream/Makefile
index 1b399860c..b5570cbe3 100644
--- a/apps/examples/ustream/Makefile
+++ b/apps/examples/ustream/Makefile
@@ -116,7 +116,7 @@ $(COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
.built: $(OBJS)
- $(call ARCHIVE, $(USTREAM_BIN), $(SERVER_OBJS))
+ $(call ARCHIVE, $(USTREAM_BIN), $(OBJS))
$(Q) touch .built
ifeq ($(CONFIG_BUILD_KERNEL),y)