You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/02/21 13:32:20 UTC

[incubator-nuttx] branch pr342 updated: Make.defs: Fix flock: failed to execute @: No such file or directory

This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a commit to branch pr342
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/pr342 by this push:
     new 20449bf  Make.defs: Fix flock: failed to execute @: No such file or directory
20449bf is described below

commit 20449bf7f78e245cc7022130e664286c83fc2c7f
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Fri Feb 21 09:59:39 2020 +0800

    Make.defs: Fix flock: failed to execute @: No such file or directory
    
    remove $(Q) in ARCHIVE which is added back in commit fd3e2c59168cbb accidentally
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 boards/z16/z16f/z16f2800100zcog/scripts/Make.defs     | 4 ++--
 boards/z80/ez80/makerlisp/scripts/Make.defs           | 4 ++--
 boards/z80/z8/z8encore000zco/configs/ostest/Make.defs | 4 ++--
 boards/z80/z8/z8f64200100kit/configs/ostest/Make.defs | 4 ++--
 tools/Config.mk                                       | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/boards/z16/z16f/z16f2800100zcog/scripts/Make.defs b/boards/z16/z16f/z16f2800100zcog/scripts/Make.defs
index ced3b91..31c0019 100644
--- a/boards/z16/z16f/z16f2800100zcog/scripts/Make.defs
+++ b/boards/z16/z16f/z16f2800100zcog/scripts/Make.defs
@@ -194,7 +194,7 @@ define MOVEOBJ
 endef
 
 define ARCHIVE
-	$(Q) for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
+	for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
 endef
 
 define CLEAN
@@ -227,7 +227,7 @@ define MOVEOBJ
 endef
 
 define ARCHIVE
-	$(Q) for __obj in $(2) ; do \
+	for __obj in $(2) ; do \
 		"$(AR)" $(ARFLAGS) $1=-+$$__obj \
 	done
 endef
diff --git a/boards/z80/ez80/makerlisp/scripts/Make.defs b/boards/z80/ez80/makerlisp/scripts/Make.defs
index a588788..48bf48a 100644
--- a/boards/z80/ez80/makerlisp/scripts/Make.defs
+++ b/boards/z80/ez80/makerlisp/scripts/Make.defs
@@ -157,7 +157,7 @@ define MOVEOBJ
 endef
 
 define ARCHIVE
-	$(Q) for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
+	for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
 endef
 
 define CLEAN
@@ -191,7 +191,7 @@ define MOVEOBJ
 endef
 
 define ARCHIVE
-	$(Q) for __obj in $(2) ; do \
+	for __obj in $(2) ; do \
 		$(AR) $(ARFLAGS) $1=-+$$__obj \
 	done
 endef
diff --git a/boards/z80/z8/z8encore000zco/configs/ostest/Make.defs b/boards/z80/z8/z8encore000zco/configs/ostest/Make.defs
index 047227e..031fe09 100644
--- a/boards/z80/z8/z8encore000zco/configs/ostest/Make.defs
+++ b/boards/z80/z8/z8encore000zco/configs/ostest/Make.defs
@@ -223,7 +223,7 @@ define MOVEOBJ
 endef
 
 define ARCHIVE
-	$(Q) for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
+	for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
 endef
 
 define CLEAN
@@ -257,7 +257,7 @@ define MOVEOBJ
 endef
 
 define ARCHIVE
-	$(Q) for __obj in $(2) ; do \
+	for __obj in $(2) ; do \
 		"$(AR)" $(ARFLAGS) $1=-+$$__obj \
 	done
 endef
diff --git a/boards/z80/z8/z8f64200100kit/configs/ostest/Make.defs b/boards/z80/z8/z8f64200100kit/configs/ostest/Make.defs
index fae3c0d..c99bca5 100644
--- a/boards/z80/z8/z8f64200100kit/configs/ostest/Make.defs
+++ b/boards/z80/z8/z8f64200100kit/configs/ostest/Make.defs
@@ -229,7 +229,7 @@ define MOVEOBJ
 endef
 
 define ARCHIVE
-	$(Q) for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
+	for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
 endef
 
 define CLEAN
@@ -257,7 +257,7 @@ define ASSEMBLE
 endef
 
 define ARCHIVE
-	$(Q) for __obj in $(2) ; do \
+	for __obj in $(2) ; do \
 		"$(AR)" $(ARFLAGS) $1=-+$$__obj \
 	done
 endef
diff --git a/tools/Config.mk b/tools/Config.mk
index cf8022a..69a25a1 100644
--- a/tools/Config.mk
+++ b/tools/Config.mk
@@ -214,7 +214,7 @@ endef
 #   CONFIG_WINDOWS_NATIVE - Defined for a Windows native build
 
 define ARCHIVE
-	$(Q) $(AR) $1 $(2)
+	$(AR) $1 $(2)
 endef
 
 # PRELINK - Prelink a list of files