examples/posix_spawn: update dependency to fix parallel build break (#26)

In stm32f4discovery:posix_spawn and lc823450-xgevk:posix_spawn parallel build,
it failed since apps/examples/posix_spawn/filesystem/romfs/hello is not available
which is needed by examples/posix_spawn/filesystem/symtab.c.

Change-Id: I588317396f8e3ca4d69d4ec8db8ccad219207048
Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
This commit is contained in:
liuguo09 2020-01-21 22:45:32 +08:00 committed by Abdelatif Guettouche
parent 18f4870a0a
commit 50a86f9bc7
3 changed files with 3 additions and 5 deletions

View File

@ -77,7 +77,7 @@ $(ROMFS_HDR) : $(ROMFS_IMG)
# Create the exported symbol table
$(SYMTAB_SRC): $(ROMFS_DIR)/hello $(ROMFS_DIR)/redirect $(ROMFS_DIR)/testdata.txt
$(SYMTAB_SRC): $(ROMFS_IMG)
$(Q) $(FILESYSTEM_DIR)$(DELIM)mksymtab.sh $(ROMFS_DIR) >$@
# Clean each subdirectory

View File

@ -56,7 +56,6 @@ clean:
$(call DELFILE, *.dSYM)
$(call CLEAN)
install:
install: $(BIN)
$(Q) mkdir -p $(ROMFS_DIR)
$(Q) install $(BIN) $(ROMFS_DIR)/$(BIN)

View File

@ -56,7 +56,6 @@ clean:
$(call DELFILE, *.dSYM)
$(call CLEAN)
install:
install: $(BIN)
$(Q) mkdir -p $(ROMFS_DIR)
$(Q) install -m 0755 $(BIN) $(ROMFS_DIR)/$(BIN)