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

gnutt 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 97fd133  Add install dependency on chardev BIN to fix parallel build 
break
97fd133 is described below

commit 97fd13302587660f4e2cd1070675663bf702fe03
Author: liuhaitao <[email protected]>
AuthorDate: Mon Jan 20 19:43:02 2020 +0800

    Add install dependency on chardev BIN to fix parallel build break
    
    chardev bin may not availabe before make install in parallel build,
    so add install dependency on chardev BIN here.
    
    Change-Id: If28451ceeeed0a6463544d8c342871cecda5a057
    Signed-off-by: liuhaitao <[email protected]>
---
 examples/module/drivers/chardev/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/module/drivers/chardev/Makefile 
b/examples/module/drivers/chardev/Makefile
index e7ceaba..cc7105b 100644
--- a/examples/module/drivers/chardev/Makefile
+++ b/examples/module/drivers/chardev/Makefile
@@ -92,6 +92,6 @@ clean:
        $(call DELFILE, $(BIN))
        $(call CLEAN)
 
-install:
+install: $(BIN)
        $(Q) mkdir -p $(FSROOT_DIR)
        $(Q) install $(BIN) $(FSROOT_DIR)/$(BIN)

Reply via email to