mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 06:42:32 +08:00
Make.defs: Fix flock: failed to execute @: No such file or directory
Remove $(Q) in ARCHIVE which is added back in commit fd3e2c5916 accidentally
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user