This is an automated email from the ASF dual-hosted git repository. masayuki 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 73319a6 examples/posix_spawn: Fix parallel build errors at link time new 0e13730 Merge pull request #120 from liuguo09/posix_spawn_nightly_build_fix 73319a6 is described below commit 73319a6968ad39e65698dbf10b3b14bb9a247132 Author: liuhaitao <liuhai...@xiaomi.com> AuthorDate: Fri Mar 13 11:33:42 2020 +0800 examples/posix_spawn: Fix parallel build errors at link time During generating symtab.c, compile seqeuence would start with incomplete symtab.c. This change will fix such a situation. Signed-off-by: liuhaitao <liuhai...@xiaomi.com> --- examples/posix_spawn/filesystem/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/posix_spawn/filesystem/Makefile b/examples/posix_spawn/filesystem/Makefile index c9541ef..aa6dece 100644 --- a/examples/posix_spawn/filesystem/Makefile +++ b/examples/posix_spawn/filesystem/Makefile @@ -78,7 +78,8 @@ $(ROMFS_HDR) : $(ROMFS_IMG) # Create the exported symbol table $(SYMTAB_SRC): $(ROMFS_IMG) - $(Q) $(FILESYSTEM_DIR)$(DELIM)mksymtab.sh $(ROMFS_DIR) >$@ + $(Q) $(FILESYSTEM_DIR)$(DELIM)mksymtab.sh $(ROMFS_DIR) >$@_tmp + $(Q) mv $@_tmp $@ # Clean each subdirectory