This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new b2e9b46 import/Make.defs: Avoid flock errors
b2e9b46 is described below
commit b2e9b46fb1b567f5a03f8f53a133e6e0a7a914ad
Author: YAMAMOTO Takashi <[email protected]>
AuthorDate: Wed Feb 26 15:35:49 2020 +0900
import/Make.defs: Avoid flock errors
Sync with tools/Config.mk
---
import/Make.defs | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/import/Make.defs b/import/Make.defs
index 27095a3..a484a31 100644
--- a/import/Make.defs
+++ b/import/Make.defs
@@ -97,8 +97,7 @@ ifeq ($(CONFIG_WINDOWS_NATIVE),y)
DELIM = $(strip \)
define ARCHIVE
- @echo AR: $2
- $(Q) $(AR) $1 $(2)
+ $(AR) $1 $(2)
endef
define DELFILE
@@ -125,8 +124,7 @@ else
DELIM = $(strip /)
define ARCHIVE
- @echo "AR: $2"
- $(Q) $(AR) $1 $(2) || { echo "$(AR) $1 FAILED!" ; exit 1 ; }
+ $(AR) $1 $(2)
endef
define DELFILE