aboutsummaryrefslogtreecommitdiff
path: root/nuttx/syscall
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 15:42:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 15:42:12 +0000
commita18d038b814eb0e7abb74ed2ea5a700304919240 (patch)
treeaa3edd7ae5f0bec0381fd40cca39da61909ea36a /nuttx/syscall
parenta2926f6d12baf162176b782e4559361c589f5844 (diff)
downloadpx4-firmware-a18d038b814eb0e7abb74ed2ea5a700304919240.tar.gz
px4-firmware-a18d038b814eb0e7abb74ed2ea5a700304919240.tar.bz2
px4-firmware-a18d038b814eb0e7abb74ed2ea5a700304919240.zip
Partial change: Removing bash ARCHIVE loop
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5335 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/syscall')
-rw-r--r--nuttx/syscall/Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/nuttx/syscall/Makefile b/nuttx/syscall/Makefile
index 88365759d..7d493665a 100644
--- a/nuttx/syscall/Makefile
+++ b/nuttx/syscall/Makefile
@@ -1,7 +1,7 @@
############################################################################
# syscall/Makefile
#
-# Copyright (C) 2011 Gregory Nutt. All rights reserved.
+# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -72,14 +72,10 @@ $(COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
$(BIN1): $(PROXY_OBJS)
- @( for obj in $(PROXY_OBJS) ; do \
- $(call ARCHIVE, $@, $${obj}); \
- done ; )
+ $(call ARCHIVE, $@, "$(PROXY_OBJS)")
$(BIN2): $(STUB_OBJS)
- @( for obj in $(STUB_OBJS) ; do \
- $(call ARCHIVE, $@, $${obj}); \
- done ; )
+ $(call ARCHIVE, $@, "$(STUB_OBJS)")
.depend: Makefile $(SRCS)
@$(MKDEP) $(ROOTDEPPATH) $(PROXYDEPPATH) $(STUBDEPPATH) \