summaryrefslogtreecommitdiff
path: root/nuttx/tools/Config.mk
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 23:44:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 23:44:31 +0000
commit96e153c0d29b1ab3657948e280faa25e864b28c5 (patch)
tree121d4fdf55df9d292c0d1d3971b2c5252cf39eaa /nuttx/tools/Config.mk
parentdab0480f31b5fe4d778a414f3b60e5c5b536b1bd (diff)
downloadpx4-nuttx-96e153c0d29b1ab3657948e280faa25e864b28c5.tar.gz
px4-nuttx-96e153c0d29b1ab3657948e280faa25e864b28c5.tar.bz2
px4-nuttx-96e153c0d29b1ab3657948e280faa25e864b28c5.zip
Correct some issues with last check-in; ez80 still does not build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5339 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools/Config.mk')
-rw-r--r--nuttx/tools/Config.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/tools/Config.mk b/nuttx/tools/Config.mk
index 47131b800..84643b8cc 100644
--- a/nuttx/tools/Config.mk
+++ b/nuttx/tools/Config.mk
@@ -64,14 +64,14 @@ endef
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
define ARCHIVE
- echo "AR: $2"
+ @echo "AR: $2"
$(AR) $1
- $(AR) $1 $(subst ",,$(2))
+ $(Q) $(AR) $1 $(subst ",,$(2))
endef
else
define ARCHIVE
- echo "AR: $2"
- $(AR) $1 $(subst ",,$(2)) || { echo "$(AR) $1 $2 FAILED!" ; exit 1 ; }
+ @echo "AR: $2"
+ $(Q) $(AR) $1 $(subst ",,$(2)) || { echo "$(AR) $1 $2 FAILED!" ; exit 1 ; }
endef
endif