You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by je...@apache.org on 2021/05/27 06:20:54 UTC

[incubator-nuttx-apps] 02/02: interpreters: wamr: Add touch in Makefile to avoid unnecessary mv

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

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

commit f6f4de1ca2874e615fe1722a8cf2dbcadba63804
Author: Masayuki Ishikawa <ma...@gmail.com>
AuthorDate: Wed May 26 14:21:14 2021 +0900

    interpreters: wamr: Add touch in Makefile to avoid unnecessary mv
    
    Signed-off-by: Masayuki Ishikawa <Ma...@jp.sony.com>
---
 interpreters/wamr/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/interpreters/wamr/Makefile b/interpreters/wamr/Makefile
index 15c27ab..0a3a32d 100644
--- a/interpreters/wamr/Makefile
+++ b/interpreters/wamr/Makefile
@@ -55,6 +55,7 @@ $(WAMR_UNPACK): $(WAMR_TARBALL)
 	$(Q) echo "Unpacking $(WAMR_TARBALL) to $(WAMR_UNPACK)"
 	$(Q) unzip $(WAMR_TARBALL)
 	$(Q) mv wasm-micro-runtime-$(WAMR_VERSION_STUB)$(WAMR_VERSION) $(WAMR_UNPACK)
+	$(Q) touch $(WAMR_UNPACK)
 
 context:: $(WAMR_UNPACK)